From: blueswir1 Date: Fri, 9 May 2008 20:12:09 +0000 (+0000) Subject: Move #include to speed up compilation X-Git-Tag: xen-3.3.0-rc1~194^2^2~54 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0828b4485a5864482e9a9a7b3c3dcea4033906f6;p=qemu-xen-4.0-testing.git Move #include to speed up compilation git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4398 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/target-sparc/exec.h b/target-sparc/exec.h index 8badf1a7..e56b2c64 100644 --- a/target-sparc/exec.h +++ b/target-sparc/exec.h @@ -56,11 +56,6 @@ void memcpy32(target_ulong *dst, const target_ulong *src); target_ulong mmu_probe(CPUState *env, target_ulong address, int mmulev); void dump_mmu(CPUState *env); -/* XXX: move that to a generic header */ -#if !defined(CONFIG_USER_ONLY) -#include "softmmu_exec.h" -#endif /* !defined(CONFIG_USER_ONLY) */ - static inline void env_to_regs(void) { #if defined(reg_REGWPTR) diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c index 70e72bb5..13f6ac4c 100644 --- a/target-sparc/op_helper.c +++ b/target-sparc/op_helper.c @@ -1,6 +1,9 @@ #include "exec.h" #include "host-utils.h" #include "helper.h" +#if !defined(CONFIG_USER_ONLY) +#include "softmmu_exec.h" +#endif /* !defined(CONFIG_USER_ONLY) */ //#define DEBUG_PCALL //#define DEBUG_MMU