mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-16 01:50:11 +00:00
(CLEAR_CACHE): Fix a2 value.
This commit is contained in:
parent
936d4afc98
commit
2dfdce515f
@ -35,7 +35,7 @@
|
||||
#define CLEAR_CACHE(BEG,END) \
|
||||
{ \
|
||||
register unsigned long _beg __asm ("a1") = (unsigned long)(BEG); \
|
||||
register unsigned long _end __asm ("a2") = (unsigned long)((END) - (BEG));\
|
||||
register unsigned long _end __asm ("a2") = (unsigned long)(END); \
|
||||
register unsigned long _flg __asm ("a3") = 0; \
|
||||
__asm __volatile ("swi 0x9f0002"); \
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user