From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40374) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TDdGG-00054d-H4 for qemu-devel@nongnu.org; Mon, 17 Sep 2012 11:29:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TDdGA-0005p4-Fc for qemu-devel@nongnu.org; Mon, 17 Sep 2012 11:29:24 -0400 Received: from mail-qa0-f45.google.com ([209.85.216.45]:37935) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TDdGA-0005gx-Bo for qemu-devel@nongnu.org; Mon, 17 Sep 2012 11:29:18 -0400 Received: by mail-qa0-f45.google.com with SMTP id c10so1602013qad.4 for ; Mon, 17 Sep 2012 08:29:18 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Mon, 17 Sep 2012 08:28:52 -0700 Message-Id: <1347895732-22212-14-git-send-email-rth@twiddle.net> In-Reply-To: <1347895732-22212-1-git-send-email-rth@twiddle.net> References: <1347895732-22212-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH 13/13] tcg: Fix !USE_DIRECT_JUMP List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com Commit 6375e09e changed the type of TranslationBlock.tb_next, but failed to change the type of TCGContext.tb_next. Signed-off-by: Richard Henderson --- tcg/tcg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcg/tcg.h b/tcg/tcg.h index 7a72729..21016ec 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -343,7 +343,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 */ -- 1.7.11.4