mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
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>
This commit is contained in:
parent
e01fa97dea
commit
bdb38b95f7
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue