From patchwork Wed Feb 10 23:26:01 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 45071 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 2C480B7CE6 for ; Thu, 11 Feb 2010 10:28:45 +1100 (EST) Received: from localhost ([127.0.0.1]:60689 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NfLz8-0006pi-G9 for incoming@patchwork.ozlabs.org; Wed, 10 Feb 2010 18:28:42 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NfLwh-0005vo-0f for qemu-devel@nongnu.org; Wed, 10 Feb 2010 18:26:11 -0500 Received: from [199.232.76.173] (port=58694 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NfLwf-0005ur-IY for qemu-devel@nongnu.org; Wed, 10 Feb 2010 18:26:09 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NfLwe-000466-Ow for qemu-devel@nongnu.org; Wed, 10 Feb 2010 18:26:09 -0500 Received: from mail-fx0-f223.google.com ([209.85.220.223]:63072) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NfLwe-000460-Ds for qemu-devel@nongnu.org; Wed, 10 Feb 2010 18:26:08 -0500 Received: by fxm23 with SMTP id 23so604508fxm.2 for ; Wed, 10 Feb 2010 15:26:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:from:to:subject:date :message-id:x-mailer:in-reply-to:references; bh=riw7JEtWDnPPACFt2aKhkg7nM+rIqAmbnMScaD+TVDs=; b=l2iwK8c9534grFU0qAsXKCKBGzTR5WpryJpm8i4peNT93kHRKELhzzPnKGj4IuF0Cz A2MTpSZaLpsD4pIajkjrvifVMJkQYKTAMJYVqMBHBfphtrkV7TaiLbjSjretOy4LT4Yx 9UyiJMUhV31t8P+Lf4haEsc6cmjAT2iWGdutA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:to:subject:date:message-id:x-mailer:in-reply-to :references; b=sXivFiuspi737YnfrCxSlIqG5wDkpYEp16mCfoL4gcfuIDEw/yAnPWR6dMBVewV9oq 2rzL4ce5E3mGbLA5a05CSqEq936xiqJE+aXU8AqD9afxcUmNutrx5avkttzymg6OfVZh gsutKmObTQfw61o23PLil0dJPrH4/jZNMhnvk= Received: by 10.223.3.90 with SMTP id 26mr1084339fam.99.1265844366750; Wed, 10 Feb 2010 15:26:06 -0800 (PST) Received: from localhost.localdomain ([85.93.118.17]) by mx.google.com with ESMTPS id p17sm554034fka.35.2010.02.10.15.26.06 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 10 Feb 2010 15:26:06 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Thu, 11 Feb 2010 00:26:01 +0100 Message-Id: <1265844362-29836-2-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.6.6 In-Reply-To: <1265844362-29836-1-git-send-email-pbonzini@redhat.com> References: <1265844362-29836-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: [Qemu-devel] [PATCH 1/2] remove dead m68k global register definitions X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Paolo Bonzini --- target-m68k/exec.h | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/target-m68k/exec.h b/target-m68k/exec.h index 1267bb6..ece9aa0 100644 --- a/target-m68k/exec.h +++ b/target-m68k/exec.h @@ -20,10 +20,6 @@ #include "dyngen-exec.h" register struct CPUM68KState *env asm(AREG0); -/* This is only used for tb lookup. */ -register uint32_t T0 asm(AREG1); -/* ??? We don't use T1, but common code expects it to exist */ -#define T1 env->t1 #include "cpu.h" #include "exec-all.h"