From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Li8GB-0006RI-R0 for qemu-devel@nongnu.org; Fri, 13 Mar 2009 10:21:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Li8G5-0006KN-FB for qemu-devel@nongnu.org; Fri, 13 Mar 2009 10:21:13 -0400 Received: from [199.232.76.173] (port=50618 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Li8G4-0006Js-MM for qemu-devel@nongnu.org; Fri, 13 Mar 2009 10:21:08 -0400 Received: from mel.act-europe.fr ([212.99.106.210]:53565) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Li8G4-0002UO-3y for qemu-devel@nongnu.org; Fri, 13 Mar 2009 10:21:08 -0400 From: Tristan Gingold Date: Fri, 13 Mar 2009 15:20:33 +0100 Message-Id: <1236954043-91856-15-git-send-email-gingold@adacore.com> In-Reply-To: <1236954043-91856-14-git-send-email-gingold@adacore.com> References: <1236954043-91856-1-git-send-email-gingold@adacore.com> <1236954043-91856-2-git-send-email-gingold@adacore.com> <1236954043-91856-3-git-send-email-gingold@adacore.com> <1236954043-91856-4-git-send-email-gingold@adacore.com> <1236954043-91856-5-git-send-email-gingold@adacore.com> <1236954043-91856-6-git-send-email-gingold@adacore.com> <1236954043-91856-7-git-send-email-gingold@adacore.com> <1236954043-91856-8-git-send-email-gingold@adacore.com> <1236954043-91856-9-git-send-email-gingold@adacore.com> <1236954043-91856-10-git-send-email-gingold@adacore.com> <1236954043-91856-11-git-send-email-gingold@adacore.com> <1236954043-91856-12-git-send-email-gingold@adacore.com> <1236954043-91856-13-git-send-email-gingold@adacore.com> <1236954043-91856-14-git-send-email-gingold@adacore.com> Subject: [Qemu-devel] [PATCH 14/24] 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 Cc: Tristan Gingold 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