qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 13/19] Move softmmu_helper.h from exec.h to op_helpe


From: Tristan Gingold
Subject: [Qemu-devel] [PATCH 13/19] Move softmmu_helper.h from exec.h to op_helper.c on alpha.
Date: Mon, 30 Mar 2009 16:36:28 +0200

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 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





reply via email to

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