diff options
| author | Richard Henderson <rth@twiddle.net> | 2012-09-17 08:28:52 -0700 |
|---|---|---|
| committer | Aurelien Jarno <aurelien@aurel32.net> | 2012-09-21 19:53:17 +0200 |
| commit | fe7e1d3ec4410d91a1a687ff4a9288870aefac40 (patch) | |
| tree | 4bd22fce078eac6fd50e25011fe3195261fcae4d | |
| parent | eca5c303339016c8640567f2e5a31ef1d6487df9 (diff) | |
| download | focaccia-qemu-fe7e1d3ec4410d91a1a687ff4a9288870aefac40.tar.gz focaccia-qemu-fe7e1d3ec4410d91a1a687ff4a9288870aefac40.zip | |
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>
| -rw-r--r-- | tcg/tcg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/tcg.h b/tcg/tcg.h index 7e903f30f0..48a56f0b15 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -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 */ |