mirror of https://github.com/xemu-project/xemu.git
tcg: Fix !USE_DIRECT_JUMP
Commit 6375e09e
changed the type of TranslationBlock.tb_next,
but failed to change the type of TCGContext.tb_next.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
eca5c30333
commit
fe7e1d3ec4
|
@ -344,7 +344,7 @@ struct TCGContext {
|
||||||
|
|
||||||
/* goto_tb support */
|
/* goto_tb support */
|
||||||
uint8_t *code_buf;
|
uint8_t *code_buf;
|
||||||
unsigned long *tb_next;
|
uintptr_t *tb_next;
|
||||||
uint16_t *tb_next_offset;
|
uint16_t *tb_next_offset;
|
||||||
uint16_t *tb_jmp_offset; /* != NULL if USE_DIRECT_JUMP */
|
uint16_t *tb_jmp_offset; /* != NULL if USE_DIRECT_JUMP */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue