aboutsummaryrefslogtreecommitdiff
path: root/tcg/tcg.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2020-09-06 11:31:44 -0700
committerRichard Henderson <richard.henderson@linaro.org>2021-01-13 08:39:08 -1000
commitbdb38b95f72ebbef2d24e057828dd18ba9c81f63 (patch)
treeb5af3671258f59e368515ef6d11b5fa0729ee6de /tcg/tcg.c
parente01fa97dea857a35be5bb8cce0d632a62e72c689 (diff)
downloadqemu-bdb38b95f72ebbef2d24e057828dd18ba9c81f63.zip
qemu-bdb38b95f72ebbef2d24e057828dd18ba9c81f63.tar.gz
qemu-bdb38b95f72ebbef2d24e057828dd18ba9c81f63.tar.bz2
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 'tcg/tcg.c')
-rw-r--r--tcg/tcg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/tcg.c b/tcg/tcg.c
index e02bb71..545dd2b 100644
--- a/tcg/tcg.c
+++ b/tcg/tcg.c
@@ -3176,7 +3176,7 @@ static void dump_regs(TCGContext *s)
tcg_target_reg_names[ts->mem_base->reg]);
break;
case TEMP_VAL_CONST:
- printf("$0x%" TCG_PRIlx, ts->val);
+ printf("$0x%" PRIx64, ts->val);
break;
case TEMP_VAL_DEAD:
printf("D");