2001-01-12 Joel Sherrill <joel@OARcorp.com>

* r46xx/vectorisrs/vectorisrs.c (mips_get_cause): Corrected
	constraints from general to register.
	* tx39/vectorisrs/vectorisrs.c (mips_get_cause): Corrected
	constraints from general to register.
This commit is contained in:
Joel Sherrill
2001-01-12 13:38:01 +00:00
parent d2959b22fb
commit 5c27c8053b
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
#define mips_get_cause( _cause ) \
do { \
asm volatile( "mfc0 %0, $13; nop" : "=g" (_cause) : ); \
asm volatile( "mfc0 %0, $13; nop" : "=r" (_cause) : ); \
} while (0)
#define CALL_ISR(_vector) \