diff options
author | Richard Henderson | 2020-09-06 20:31:44 +0200 |
---|---|---|
committer | Richard Henderson | 2021-01-13 19:39:08 +0100 |
commit | bdb38b95f72ebbef2d24e057828dd18ba9c81f63 (patch) | |
tree | b5af3671258f59e368515ef6d11b5fa0729ee6de /include | |
parent | tcg: Add temp_readonly (diff) | |
download | qemu-bdb38b95f72ebbef2d24e057828dd18ba9c81f63.tar.gz qemu-bdb38b95f72ebbef2d24e057828dd18ba9c81f63.tar.xz qemu-bdb38b95f72ebbef2d24e057828dd18ba9c81f63.zip |
tcg: Expand TCGTemp.val to 64-bits
This will reduce the differences between 32-bit and 64-bit hosts,
allowing full 64-bit constants to be created with the same interface.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/tcg/tcg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h index 2bdaeaa69c..e7adc7e265 100644 --- a/include/tcg/tcg.h +++ b/include/tcg/tcg.h @@ -506,7 +506,7 @@ typedef struct TCGTemp { unsigned int mem_allocated:1; unsigned int temp_allocated:1; - tcg_target_long val; + int64_t val; struct TCGTemp *mem_base; intptr_t mem_offset; const char *name; |