diff options
Diffstat (limited to 'target-mips/cpu.h')
-rw-r--r-- | target-mips/cpu.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/target-mips/cpu.h b/target-mips/cpu.h index 710748c69b..8f0f598b6d 100644 --- a/target-mips/cpu.h +++ b/target-mips/cpu.h @@ -15,13 +15,10 @@ typedef unsigned char uint_fast8_t; typedef unsigned int uint_fast16_t; #endif -#ifdef MIPS_HAS_MIPS64 -#define SIGN_EXTEND32(val) (((((uint64_t)(val)) & 0xFFFFFFFF) ^ 0x80000000) - 0x80000000) /* target_ulong size spec */ +#ifdef MIPS_HAS_MIPS64 #define TLSZ "%016llx" #else -#define SIGN_EXTEND32(val) (val) -/* target_ulong size spec */ #define TLSZ "%08x" #endif |