From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lm8s0-0002vW-PT for qemu-devel@nongnu.org; Tue, 24 Mar 2009 11:48:52 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lm8rg-0002hP-2C for qemu-devel@nongnu.org; Tue, 24 Mar 2009 11:48:38 -0400 Received: from [199.232.76.173] (port=33134 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lm8re-0002gd-PH for qemu-devel@nongnu.org; Tue, 24 Mar 2009 11:48:31 -0400 Received: from mel.act-europe.fr ([212.99.106.210]:52850) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lm8re-0003gI-9I for qemu-devel@nongnu.org; Tue, 24 Mar 2009 11:48:30 -0400 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 6CE0C290067 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 le2NlMFCfWFv 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 4B8AE29005C for ; Tue, 24 Mar 2009 16:48:07 +0100 (CET) From: Tristan Gingold Date: Tue, 24 Mar 2009 16:47:57 +0100 Message-Id: <1237909687-31711-16-git-send-email-gingold@adacore.com> In-Reply-To: <1237909687-31711-15-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> <1237909687-31711-8-git-send-email-gingold@adacore.com> <1237909687-31711-9-git-send-email-gingold@adacore.com> <1237909687-31711-10-git-send-email-gingold@adacore.com> <1237909687-31711-11-git-send-email-gingold@adacore.com> <1237909687-31711-12-git-send-email-gingold@adacore.com> <1237909687-31711-13-git-send-email-gingold@adacore.com> <1237909687-31711-14-git-send-email-gingold@adacore.com> <1237909687-31711-15-git-send-email-gingold@adacore.com> Subject: [Qemu-devel] [PATCH 15/25] 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 8ce1065..fde30c0 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) { tlb_flush(env, 1); -- 1.6.2