qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 15/25] Move softmmu_helper.h from exec.h to op_helpe


From: Tristan Gingold
Subject: [Qemu-devel] [PATCH 15/25] Move softmmu_helper.h from exec.h to op_helper.c on alpha.
Date: Tue, 24 Mar 2009 16:47:57 +0100

There is no real needs to inline these functions everywhere and this
simplify debugging.

Signed-off-by: Tristan Gingold <address@hidden>
---
 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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]