From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LoIbq-0007wq-D6 for qemu-devel@nongnu.org; Mon, 30 Mar 2009 10:37:06 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LoIbi-0007pP-AB for qemu-devel@nongnu.org; Mon, 30 Mar 2009 10:37:03 -0400 Received: from [199.232.76.173] (port=54192 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LoIbi-0007p9-4J for qemu-devel@nongnu.org; Mon, 30 Mar 2009 10:36:58 -0400 Received: from mel.act-europe.fr ([212.99.106.210]:60609) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LoIbh-0000xg-Ft for qemu-devel@nongnu.org; Mon, 30 Mar 2009 10:36:57 -0400 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id CDEE5290079 for ; Mon, 30 Mar 2009 16:36:36 +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 VVjOK4WFRIYO for ; Mon, 30 Mar 2009 16:36:36 +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 2F096290056 for ; Mon, 30 Mar 2009 16:36:35 +0200 (CEST) From: Tristan Gingold Date: Mon, 30 Mar 2009 16:36:28 +0200 Message-Id: <1238423794-25455-14-git-send-email-gingold@adacore.com> In-Reply-To: <1238423794-25455-13-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> <1238423794-25455-3-git-send-email-gingold@adacore.com> <1238423794-25455-4-git-send-email-gingold@adacore.com> <1238423794-25455-5-git-send-email-gingold@adacore.com> <1238423794-25455-6-git-send-email-gingold@adacore.com> <1238423794-25455-7-git-send-email-gingold@adacore.com> <1238423794-25455-8-git-send-email-gingold@adacore.com> <1238423794-25455-9-git-send-email-gingold@adacore.com> <1238423794-25455-10-git-send-email-gingold@adacore.com> <1238423794-25455-11-git-send-email-gingold@adacore.com> <1238423794-25455-12-git-send-email-gingold@adacore.com> <1238423794-25455-13-git-send-email-gingold@adacore.com> Subject: [Qemu-devel] [PATCH 13/19] Move softmmu_helper.h from exec.h to op_helper.c on alpha. 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 There is no real needs to inline these functions everywhere and this simplify debugging. Signed-off-by: Tristan Gingold --- target-alpha/exec.h | 4 ---- target-alpha/op_helper.c | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/target-alpha/exec.h b/target-alpha/exec.h index 9ea7030..0ce82c8 100644 --- a/target-alpha/exec.h +++ b/target-alpha/exec.h @@ -36,10 +36,6 @@ register struct CPUAlphaState *env asm(AREG0); #include "cpu.h" #include "exec-all.h" -#if !defined(CONFIG_USER_ONLY) -#include "softmmu_exec.h" -#endif /* !defined(CONFIG_USER_ONLY) */ - static always_inline void env_to_regs(void) { } diff --git a/target-alpha/op_helper.c b/target-alpha/op_helper.c index 433a0da..4b6ada7 100644 --- a/target-alpha/op_helper.c +++ b/target-alpha/op_helper.c @@ -23,6 +23,10 @@ #include "softfloat.h" #include "helper.h" +#if !defined(CONFIG_USER_ONLY) +#include "softmmu_exec.h" +#endif /* !defined(CONFIG_USER_ONLY) */ + void helper_tb_flush (void) { tb_flush(env); -- 1.6.2