summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2023-10-22 16:34:21 -0700
committerRichard Henderson <richard.henderson@linaro.org>2023-10-22 16:34:21 -0700
commitc048b68385c2146931ea032d775479a8ab1cddf3 (patch)
tree835ec77bf3a83439f802b504bb70de80ce41ca2e
parentf1c29532e7f85932d541fc733fda82e8cf887311 (diff)
downloadfocaccia-qemu-c048b68385c2146931ea032d775479a8ab1cddf3.tar.gz
focaccia-qemu-c048b68385c2146931ea032d775479a8ab1cddf3.zip
tcg: Define MO_TL
This will also come in handy later for "less than" comparisons.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <03ba02fd-fade-4409-be16-2f81a5690b4c@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--include/exec/target_long.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/exec/target_long.h b/include/exec/target_long.h
index 93c9472971..3cd8e26a23 100644
--- a/include/exec/target_long.h
+++ b/include/exec/target_long.h
@@ -29,12 +29,14 @@ typedef uint32_t target_ulong;
 #define TARGET_FMT_lx "%08x"
 #define TARGET_FMT_ld "%d"
 #define TARGET_FMT_lu "%u"
+#define MO_TL MO_32
 #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
 #define TARGET_FMT_lu "%" PRIu64
+#define MO_TL MO_64
 #else
 #error TARGET_LONG_SIZE undefined
 #endif