summaryrefslogtreecommitdiff
path: root/tcg/tcg.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2012-09-17 08:28:52 -0700
committerAurelien Jarno <aurelien@aurel32.net>2012-09-21 19:53:17 +0200
commitfe7e1d3ec4410d91a1a687ff4a9288870aefac40 (patch)
tree4bd22fce078eac6fd50e25011fe3195261fcae4d /tcg/tcg.h
parenteca5c303339016c8640567f2e5a31ef1d6487df9 (diff)
downloadqemu-fe7e1d3ec4410d91a1a687ff4a9288870aefac40.tar.gz
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>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r--tcg/tcg.h2
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 */