From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lm8s2-0002wN-4a for qemu-devel@nongnu.org; Tue, 24 Mar 2009 11:48:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lm8rm-0002kq-2d for qemu-devel@nongnu.org; Tue, 24 Mar 2009 11:48:42 -0400 Received: from [199.232.76.173] (port=33154 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lm8rk-0002kO-0V for qemu-devel@nongnu.org; Tue, 24 Mar 2009 11:48:36 -0400 Received: from mel.act-europe.fr ([212.99.106.210]:52856) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lm8rj-0003hm-L8 for qemu-devel@nongnu.org; Tue, 24 Mar 2009 11:48:35 -0400 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 81244290059 for ; Tue, 24 Mar 2009 16:48:07 +0100 (CET) Received: from mel.act-europe.fr ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vZTN4aRd2YsK for ; Tue, 24 Mar 2009 16:48:07 +0100 (CET) Received: from ulanbator.act-europe.fr (ulanbator.act-europe.fr [10.10.1.67]) by mel.act-europe.fr (Postfix) with ESMTP id 5587729002F for ; Tue, 24 Mar 2009 16:48:07 +0100 (CET) From: Tristan Gingold Date: Tue, 24 Mar 2009 16:47:49 +0100 Message-Id: <1237909687-31711-8-git-send-email-gingold@adacore.com> In-Reply-To: <1237909687-31711-7-git-send-email-gingold@adacore.com> References: <1237909687-31711-1-git-send-email-gingold@adacore.com> <1237909687-31711-2-git-send-email-gingold@adacore.com> <1237909687-31711-3-git-send-email-gingold@adacore.com> <1237909687-31711-4-git-send-email-gingold@adacore.com> <1237909687-31711-5-git-send-email-gingold@adacore.com> <1237909687-31711-6-git-send-email-gingold@adacore.com> <1237909687-31711-7-git-send-email-gingold@adacore.com> Subject: [Qemu-devel] [PATCH 07/25] Increase Alpha physical address size to 44 bits. Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Remove unused target virt addr. Signed-off-by: Tristan Gingold --- exec.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/exec.c b/exec.c index 4330003..12d35b0 100644 --- a/exec.c +++ b/exec.c @@ -68,8 +68,7 @@ #elif defined(TARGET_SPARC) #define TARGET_PHYS_ADDR_SPACE_BITS 36 #elif defined(TARGET_ALPHA) -#define TARGET_PHYS_ADDR_SPACE_BITS 42 -#define TARGET_VIRT_ADDR_SPACE_BITS 42 +#define TARGET_PHYS_ADDR_SPACE_BITS 44 #elif defined(TARGET_PPC64) #define TARGET_PHYS_ADDR_SPACE_BITS 42 #elif defined(TARGET_X86_64) && !defined(USE_KQEMU) -- 1.6.2