summaryrefslogtreecommitdiff
path: root/target-mips
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2011-06-19 20:38:22 +0000
committerBlue Swirl <blauwirbel@gmail.com>2011-06-26 18:25:35 +0000
commit2b41f10e186ccb4f0058815161586f8d6d006ea3 (patch)
treeec040cdcd7a1d62a8733df155902a8405dcbbf94 /target-mips
parentf081c76ccfdbc1fdaa90fa5eb6abad46c1b5bfa8 (diff)
downloadqemu-2b41f10e186ccb4f0058815161586f8d6d006ea3.tar.gz
Remove exec-all.h include directives
Most exec-all.h include directives are now useless, remove them. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-mips')
-rw-r--r--target-mips/exec.h1
-rw-r--r--target-mips/helper.c1
-rw-r--r--target-mips/machine.c2
-rw-r--r--target-mips/translate.c1
4 files changed, 1 insertions, 4 deletions
diff --git a/target-mips/exec.h b/target-mips/exec.h
index a3a7262a84..e787e9a8ba 100644
--- a/target-mips/exec.h
+++ b/target-mips/exec.h
@@ -11,7 +11,6 @@
register struct CPUMIPSState *env asm(AREG0);
#include "cpu.h"
-#include "exec-all.h"
#if !defined(CONFIG_USER_ONLY)
#include "softmmu_exec.h"
diff --git a/target-mips/helper.c b/target-mips/helper.c
index 0f057c2171..ecf6182f56 100644
--- a/target-mips/helper.c
+++ b/target-mips/helper.c
@@ -24,7 +24,6 @@
#include <signal.h>
#include "cpu.h"
-#include "exec-all.h"
enum {
TLBRET_DIRTY = -4,
diff --git a/target-mips/machine.c b/target-mips/machine.c
index 9ffac711ce..be72b36de6 100644
--- a/target-mips/machine.c
+++ b/target-mips/machine.c
@@ -1,7 +1,7 @@
#include "hw/hw.h"
#include "hw/boards.h"
-#include "exec-all.h"
+#include "cpu.h"
static void save_tc(QEMUFile *f, TCState *tc)
{
diff --git a/target-mips/translate.c b/target-mips/translate.c
index 4eaa8261c3..2848c6a692 100644
--- a/target-mips/translate.c
+++ b/target-mips/translate.c
@@ -27,7 +27,6 @@
#include <inttypes.h>
#include "cpu.h"
-#include "exec-all.h"
#include "disas.h"
#include "tcg-op.h"
#include "qemu-common.h"