12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #ifndef _SGIDEFS_H
- #define _SGIDEFS_H 1
- #undef __ASM_SGIDEFS_H
- #define __ASM_SGIDEFS_H
- #undef _MIPS_ISA_MIPS1
- #undef _MIPS_ISA_MIPS2
- #undef _MIPS_ISA_MIPS3
- #undef _MIPS_ISA_MIPS4
- #undef _MIPS_ISA_MIPS5
- #undef _MIPS_ISA_MIPS32
- #undef _MIPS_ISA_MIPS64
- #undef _MIPS_SIM_ABI32
- #undef _MIPS_SIM_NABI32
- #undef _MIPS_SIM_ABI64
- #define _MIPS_ISA_MIPS1 1
- #define _MIPS_ISA_MIPS2 2
- #define _MIPS_ISA_MIPS3 3
- #define _MIPS_ISA_MIPS4 4
- #define _MIPS_ISA_MIPS5 5
- #define _MIPS_ISA_MIPS32 6
- #define _MIPS_ISA_MIPS64 7
- #ifndef _ABIO32
- # define _ABIO32 1
- #endif
- #define _MIPS_SIM_ABI32 _ABIO32
- #ifndef _ABIN32
- # define _ABIN32 2
- #endif
- #define _MIPS_SIM_NABI32 _ABIN32
- #ifndef _ABI64
- # define _ABI64 3
- #endif
- #define _MIPS_SIM_ABI64 _ABI64
- #endif
|