Added __mips==32 to fix build problems on those targets caused by the B.Robinson patch

This commit is contained in:
Greg Menke
2006-06-10 10:42:07 +00:00
parent 0243b0d8d3
commit 25571ae49f

View File

@@ -53,9 +53,9 @@
** Exception stack frame pointer used in cpu_asm to pass the exception stack frame
** address to the context switch code.
*/
#if (__mips == 1)
#if (__mips == 1) || (__mips == 32)
typedef uint32_t ESF_PTR_TYPE;
#elif (__mips == 3)
#elif (__mips == 3)
typedef uint64_t ESF_PTR_TYPE;
#else
#error "unknown MIPS ISA"