From patchwork Wed Aug 17 21:11:48 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 110463 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BFC38B6F95 for ; Thu, 18 Aug 2011 09:36:10 +1000 (EST) Received: from localhost ([::1]:34275 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QtnPj-00088R-2N for incoming@patchwork.ozlabs.org; Wed, 17 Aug 2011 17:12:39 -0400 Received: from eggs.gnu.org ([140.186.70.92]:34150) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QtnP7-0006Y9-Hz for qemu-devel@nongnu.org; Wed, 17 Aug 2011 17:12:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QtnP5-0003du-Tm for qemu-devel@nongnu.org; Wed, 17 Aug 2011 17:12:00 -0400 Received: from mail-gw0-f45.google.com ([74.125.83.45]:40705) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QtnP5-0003cV-Ic for qemu-devel@nongnu.org; Wed, 17 Aug 2011 17:11:59 -0400 Received: by mail-gw0-f45.google.com with SMTP id 19so570652gwb.4 for ; Wed, 17 Aug 2011 14:11:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:from:to:subject:date:message-id:x-mailer:in-reply-to :references; bh=GsV5wpYXGDEnR7yMbSZMt0bgDJmC1BLHrAsZ1uDV3z8=; b=oP9Kq9dR77I5W2CWcQsOWy0I1Uh0R12VEovbbTnt4fMhMPYaRJdCCdL9BtC7mJ8O9e fy1ifiAVa/Fw8+NaSuINnYRdp75kcyjm0xaeMkNAns4r9oVQq3Z5Fo0H0cgtcMREvIYv CuvESQcF2Pnxkq+0qkJwjsoUS1oCMKr6FlX78= Received: by 10.143.96.29 with SMTP id y29mr652790wfl.245.1313615519062; Wed, 17 Aug 2011 14:11:59 -0700 (PDT) Received: from localhost.localdomain (c-71-227-161-214.hsd1.wa.comcast.net [71.227.161.214]) by mx.google.com with ESMTPS id g4sm901648pbj.9.2011.08.17.14.11.58 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 17 Aug 2011 14:11:58 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Wed, 17 Aug 2011 14:11:48 -0700 Message-Id: <1313615510-10615-5-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.7.4.4 In-Reply-To: <1313615510-10615-1-git-send-email-rth@twiddle.net> References: <1313615510-10615-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 74.125.83.45 Subject: [Qemu-devel] [PATCH 4/6] tcg-hppa: Fix CPU_TEMP_BUF_NLONGS oversight. 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 Signed-off-by: Richard Henderson --- tcg/hppa/tcg-target.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tcg/hppa/tcg-target.c b/tcg/hppa/tcg-target.c index 222f33e..71d9677 100644 --- a/tcg/hppa/tcg-target.c +++ b/tcg/hppa/tcg-target.c @@ -1650,7 +1650,7 @@ static void tcg_target_qemu_prologue(TCGContext *s) /* Record the location of the TCG temps. */ tcg_set_frame(s, TCG_REG_CALL_STACK, -frame_size + i * 4, - TCG_TEMP_BUF_NLONGS * sizeof(long)); + CPU_TEMP_BUF_NLONGS * sizeof(long)); #ifdef CONFIG_USE_GUEST_BASE if (GUEST_BASE != 0) {