summaryrefslogtreecommitdiff
path: root/target-i386
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-i386
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-i386')
-rw-r--r--target-i386/exec.h1
-rw-r--r--target-i386/helper.c1
-rw-r--r--target-i386/machine.c2
-rw-r--r--target-i386/op_helper.c1
-rw-r--r--target-i386/translate.c1
5 files changed, 1 insertions, 5 deletions
diff --git a/target-i386/exec.h b/target-i386/exec.h
index 90a6b36882..dd9bce4eed 100644
--- a/target-i386/exec.h
+++ b/target-i386/exec.h
@@ -34,7 +34,6 @@ register struct CPUX86State *env asm(AREG0);
#include "qemu-log.h"
#include "cpu.h"
-#include "exec-all.h"
/* op_helper.c */
void QEMU_NORETURN raise_exception_err(int exception_index, int error_code);
diff --git a/target-i386/helper.c b/target-i386/helper.c
index 509d68ca0f..e9be104293 100644
--- a/target-i386/helper.c
+++ b/target-i386/helper.c
@@ -23,7 +23,6 @@
#include <inttypes.h>
#include "cpu.h"
-#include "exec-all.h"
#include "qemu-common.h"
#include "kvm.h"
#ifndef CONFIG_USER_ONLY
diff --git a/target-i386/machine.c b/target-i386/machine.c
index 7662aa20b7..9aca8e0523 100644
--- a/target-i386/machine.c
+++ b/target-i386/machine.c
@@ -3,7 +3,7 @@
#include "hw/pc.h"
#include "hw/isa.h"
-#include "exec-all.h"
+#include "cpu.h"
#include "kvm.h"
static const VMStateDescription vmstate_segment = {
diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c
index db038a7fcd..315e18b9a4 100644
--- a/target-i386/op_helper.c
+++ b/target-i386/op_helper.c
@@ -19,7 +19,6 @@
#include <math.h>
#include "exec.h"
-#include "exec-all.h"
#include "host-utils.h"
#include "ioport.h"
diff --git a/target-i386/translate.c b/target-i386/translate.c
index 10bd72a0e2..ccef381be8 100644
--- a/target-i386/translate.c
+++ b/target-i386/translate.c
@@ -24,7 +24,6 @@
#include <signal.h>
#include "cpu.h"
-#include "exec-all.h"
#include "disas.h"
#include "tcg-op.h"