At
|
int __aeabi_uread4(void *address); |
|
int __aeabi_uwrite4(int value, void *address); |
|
long long __aeabi_uread8(void *address); |
|
long long __aeabi_uwrite8(long long value, void *address); |
these are defined as:
int __aeabi_uread4(void *address);
int __aeabi_uwrite4(int value, void *address);
long long __aeabi_uread8(void *address);
long long __aeabi_uwrite8(long long value, void *address);
but there shouldn't be any reason for the read variants to need to write the pointer. Could it be updated to const void *address?
At
abi-aa/rtabi32/rtabi32.rst
Lines 1421 to 1424 in 2b21824
but there shouldn't be any reason for the
readvariants to need to write the pointer. Could it be updated toconst void *address?