From patchwork Mon Sep 17 15:28:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 184473 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 810A52C00C3 for ; Tue, 18 Sep 2012 01:38:00 +1000 (EST) Received: from localhost ([::1]:33567 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TDdHA-0006bq-Hk for incoming@patchwork.ozlabs.org; Mon, 17 Sep 2012 11:30:20 -0400 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=JYG9EqsSuV3sFitkYMhuqnxDKYR5QmSmBY6z0NiCnpY=; b=tq/uob4vInU6CGSsIAOBDEERnpayFfUQ9vsLypWyfJaCoHd95Kyib6ZkxDm0Rgpwdh PEEFcpaANfOJVniVFRNREf5ec7kNpYNh7tBWGBROjmvjafB2hhiN5zq1mEX58QTwJzFY HVXH1eTH+ABj5ckKcnpnjmAr/Lf4VrTUAyb2Ysyi4IaSDN6lyK38MyWC0oxqr67yo9Fy GCIaxwtSbXOUG025/O3VHmw60+8bQ2QbfJW83JlSn/XGhJdYzH5vc3ERTdMytjivnc5O RsZEYlKh+YdR5yDVcq1G6vxzWAr30huvmhC4PCHZQiPJeHj/Q4yH1tJ5y/KpBv9tdV7O /xGw== Received: by 10.224.220.204 with SMTP id hz12mr17490728qab.40.1347895758194; Mon, 17 Sep 2012 08:29:18 -0700 (PDT) Received: from anchor.twiddle.home.com ([173.160.232.49]) by mx.google.com with ESMTPS id d11sm13593751qaj.18.2012.09.17.08.29.17 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 17 Sep 2012 08:29:17 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Mon, 17 Sep 2012 08:28:52 -0700 Message-Id: <1347895732-22212-14-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.7.11.4 In-Reply-To: <1347895732-22212-1-git-send-email-rth@twiddle.net> References: <1347895732-22212-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.216.45 Cc: blauwirbel@gmail.com Subject: [Qemu-devel] [PATCH 13/13] tcg: Fix !USE_DIRECT_JUMP X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 Reviewed-by: Aurelien Jarno --- 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 */