target: Include softmmu_exec.h where forgotten
authorRichard Henderson <rth@twiddle.net>
Tue, 27 Aug 2013 20:03:27 +0000 (13:03 -0700)
committerRichard Henderson <rth@twiddle.net>
Mon, 2 Sep 2013 16:08:30 +0000 (09:08 -0700)
Several targets forgot to include softmmu_exec.h, which would
break them with a header cleanup to follow.

Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
target-lm32/op_helper.c
target-moxie/helper.c
target-ppc/mmu_helper.c
target-unicore32/op_helper.c
target-xtensa/op_helper.c

index 2dab9f27b4d77d885ab3c733c8460bd1d7045089..8f5ef554d5f5b5884df99b6cc6742795ac88bcc4 100644 (file)
@@ -6,6 +6,8 @@
 #include "hw/lm32/lm32_pic.h"
 #include "hw/char/lm32_juart.h"
 
+#include "exec/softmmu_exec.h"
+
 #if !defined(CONFIG_USER_ONLY)
 #define MMUSUFFIX _mmu
 #define SHIFT 0
index b12e4ffcafbd078fd194744c65893a671e876de8..7859102ab79b0a8a4dfd5a6335020931a89b1a20 100644 (file)
@@ -25,6 +25,7 @@
 #include "cpu.h"
 #include "mmu.h"
 #include "exec/exec-all.h"
+#include "exec/softmmu_exec.h"
 #include "qemu/host-utils.h"
 #include "helper.h"
 
index 5dd4e05f78f14bca71f132ed53bf4bc44670d33d..44f04e5d8b22db1882da2a30439b354b674d5eec 100644 (file)
@@ -2871,6 +2871,8 @@ void helper_booke206_tlbflush(CPUPPCState *env, uint32_t type)
 
 /*****************************************************************************/
 
+#include "exec/softmmu_exec.h"
+
 #define MMUSUFFIX _mmu
 
 #define SHIFT 0
index 6443ffec1c4b78a4ae4c3bd6ad4fad4e18088ea0..4f9f41eb36bf17521a66a12ec0d8bd85ee8d96b8 100644 (file)
@@ -239,6 +239,8 @@ uint32_t HELPER(ror_cc)(CPUUniCore32State *env, uint32_t x, uint32_t i)
 }
 
 #ifndef CONFIG_USER_ONLY
+#include "exec/softmmu_exec.h"
+
 #define MMUSUFFIX _mmu
 
 #define SHIFT 0
index 01123af70734a8d8ae524cb15f1f3ac12e5a62f9..cf970257dbfb1d18d735e949ad285caf1d7e8ba2 100644 (file)
@@ -28,6 +28,7 @@
 #include "cpu.h"
 #include "helper.h"
 #include "qemu/host-utils.h"
+#include "exec/softmmu_exec.h"
 
 static void do_unaligned_access(CPUXtensaState *env,
         target_ulong addr, int is_write, int is_user, uintptr_t retaddr);