From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LoIkO-0003r7-Kv for qemu-devel@nongnu.org; Mon, 30 Mar 2009 10:45:56 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LoIkL-0003ph-15 for qemu-devel@nongnu.org; Mon, 30 Mar 2009 10:45:56 -0400 Received: from [199.232.76.173] (port=36592 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LoIkK-0003pR-L7 for qemu-devel@nongnu.org; Mon, 30 Mar 2009 10:45:52 -0400 Received: from mel.act-europe.fr ([212.99.106.210]:42793) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LoIkK-0002oY-4D for qemu-devel@nongnu.org; Mon, 30 Mar 2009 10:45:52 -0400 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 60116290040 for ; Mon, 30 Mar 2009 16:36:41 +0200 (CEST) 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 g+qRz-dw-hOG for ; Mon, 30 Mar 2009 16:36:35 +0200 (CEST) Received: from ulanbator.act-europe.fr (ulanbator.act-europe.fr [10.10.1.67]) by mel.act-europe.fr (Postfix) with ESMTP id 0FD4729003B for ; Mon, 30 Mar 2009 16:36:35 +0200 (CEST) From: Tristan Gingold Date: Mon, 30 Mar 2009 16:36:17 +0200 Message-Id: <1238423794-25455-3-git-send-email-gingold@adacore.com> In-Reply-To: <1238423794-25455-2-git-send-email-gingold@adacore.com> References: <1238423794-25455-1-git-send-email-gingold@adacore.com> <1238423794-25455-2-git-send-email-gingold@adacore.com> Subject: [Qemu-devel] [PATCH 02/19] 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 4b2ebc2..5dc6bc7 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