mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
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
1 changed files with 1 additions and 1 deletions
|
@ -344,7 +344,7 @@ struct TCGContext {
|
|||
|
||||
/* goto_tb support */
|
||||
uint8_t *code_buf;
|
||||
unsigned long *tb_next;
|
||||
uintptr_t *tb_next;
|
||||
uint16_t *tb_next_offset;
|
||||
uint16_t *tb_jmp_offset; /* != NULL if USE_DIRECT_JUMP */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue