diff options
Diffstat (limited to 'cpu-defs.h')
-rw-r--r-- | cpu-defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpu-defs.h b/cpu-defs.h index 04fde7e892..46cda20174 100644 --- a/cpu-defs.h +++ b/cpu-defs.h @@ -44,10 +44,12 @@ typedef int32_t target_long; typedef uint32_t target_ulong; #define TARGET_FMT_lx "%08x" +#define TARGET_FMT_ld "%d" #elif TARGET_LONG_SIZE == 8 typedef int64_t target_long; typedef uint64_t target_ulong; #define TARGET_FMT_lx "%016" PRIx64 +#define TARGET_FMT_ld "%" PRId64 #else #error TARGET_LONG_SIZE undefined #endif |