From patchwork Thu Nov 1 21:36:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 196384 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 59B342C0346 for ; Fri, 2 Nov 2012 08:37:25 +1100 (EST) Received: from localhost ([::1]:45199 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TU2S3-0005xd-G7 for incoming@patchwork.ozlabs.org; Thu, 01 Nov 2012 17:37:23 -0400 Received: from eggs.gnu.org ([208.118.235.92]:45643) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TU2Rq-0005nt-D6 for qemu-devel@nongnu.org; Thu, 01 Nov 2012 17:37:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TU2Rp-00028x-Ew for qemu-devel@nongnu.org; Thu, 01 Nov 2012 17:37:10 -0400 Received: from mail-da0-f45.google.com ([209.85.210.45]:39354) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TU2Rp-00026p-8G; Thu, 01 Nov 2012 17:37:09 -0400 Received: by mail-da0-f45.google.com with SMTP id n15so1304841dad.4 for ; Thu, 01 Nov 2012 14:37:08 -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=IaYTHG+pwdytN8Vp8wdvT+f3ls+IY3rzMWgqGgf72Ho=; b=JjtDENcK3kRVgDgDrhr8sMdAM51Wx9ohc/N6QCIbBYHo+6iFqN/PNbcpU8qJSYv9FD AYw7lKtvFnhXZQGs6mzB6lc4Risk7UdY6LBWMRj8hSRyjyR1DASw3yZnbwUx095fgKDO dd97puePFxxzcTxae/U4+C8oW3DvPz61sAqrxcjiR4NZYcYMQv2sj7VTbxlO2/5RfrLE 7E2UXUrNmHttA+4c7ffCztNeNpFKRN8T9x4Y1v7NzyItrwYzQuorUT5pED/kfAmfiyJI 9tODe3L5RdRvuJiCIDqe8o0GLJ/jbkdlVEJa3Y4sIw+HfBZPBo8YF562wOeQetEW/TQw REig== Received: by 10.68.252.132 with SMTP id zs4mr55168464pbc.131.1351805828789; Thu, 01 Nov 2012 14:37:08 -0700 (PDT) Received: from pebble.twiddle.home.com ([1.152.139.87]) by mx.google.com with ESMTPS id c7sm4534436pay.10.2012.11.01.14.37.06 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 01 Nov 2012 14:37:08 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Fri, 2 Nov 2012 08:36:37 +1100 Message-Id: <1351805797-31899-4-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.7.11.7 In-Reply-To: <1351805797-31899-1-git-send-email-rth@twiddle.net> References: <1351805797-31899-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.210.45 Cc: qemu-trivial@nongnu.org, Blue Swirl Subject: [Qemu-devel] [PATCH 3/3] target-sparc: Remove t0, t1 from CPUSPARCState 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 These fields are no longer used. Cc: Blue Swirl Signed-off-by: Richard Henderson --- target-sparc/cpu.h | 1 - 1 file changed, 1 deletion(-) diff --git a/target-sparc/cpu.h b/target-sparc/cpu.h index 6aa82b3..84dba4e 100644 --- a/target-sparc/cpu.h +++ b/target-sparc/cpu.h @@ -392,7 +392,6 @@ struct CPUSPARCState { target_ulong cc_dst; uint32_t cc_op; - target_ulong t0, t1; /* temporaries live across basic blocks */ target_ulong cond; /* conditional branch result (XXX: save it in a temporary register when possible) */