From: Richard Henderson Date: Mon, 17 Sep 2012 15:28:52 +0000 (-0700) Subject: tcg: Fix !USE_DIRECT_JUMP X-Git-Tag: v1.2.1~187 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4c8f62d3885422949db31a750a96f149db474e9d;p=thirdparty%2Fqemu.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 Reviewed-by: Andreas Färber Signed-off-by: Aurelien Jarno Signed-off-by: Michael Roth --- diff --git a/tcg/tcg.h b/tcg/tcg.h index f45410738c3..609ed86fae0 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 */