(CLEAR_CACHE): Fix a2 value.

This commit is contained in:
Ulrich Drepper 1999-12-21 17:50:04 +00:00
parent 936d4afc98
commit 2dfdce515f
1 changed files with 1 additions and 1 deletions

View File

@ -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"); \
}