aboutsummaryrefslogtreecommitdiff
path: root/tcg/tcg.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-03-09 17:46:16 -0800
committerRichard Henderson <richard.henderson@linaro.org>2023-05-16 16:30:29 -0700
commit4baf3978c02b387c39dc6a75d323126ab386aece (patch)
tree6e31f403ca04bf2a5dda3109815222c6adb838b5 /tcg/tcg.c
parentfcdab382c8b92bcc689b18f8ba5cd036139945bf (diff)
downloadqemu-4baf3978c02b387c39dc6a75d323126ab386aece.zip
qemu-4baf3978c02b387c39dc6a75d323126ab386aece.tar.gz
qemu-4baf3978c02b387c39dc6a75d323126ab386aece.tar.bz2
tcg: Add addr_type to TCGContext
This will enable replacement of TARGET_LONG_BITS within tcg/. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tcg.c')
-rw-r--r--tcg/tcg.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tcg/tcg.c b/tcg/tcg.c
index 45e8aa6..ff860b5 100644
--- a/tcg/tcg.c
+++ b/tcg/tcg.c
@@ -1520,6 +1520,9 @@ void tcg_func_start(TCGContext *s)
QTAILQ_INIT(&s->ops);
QTAILQ_INIT(&s->free_ops);
QSIMPLEQ_INIT(&s->labels);
+
+ tcg_debug_assert(s->addr_type == TCG_TYPE_I32 ||
+ s->addr_type == TCG_TYPE_I64);
}
static TCGTemp *tcg_temp_alloc(TCGContext *s)