diff options
author | Peter Maydell | 2011-07-04 23:02:46 +0200 |
---|---|---|
committer | Blue Swirl | 2011-07-12 23:01:20 +0200 |
commit | f5fc40bb8133849618e0d05adc798c5f07f7b17f (patch) | |
tree | c53b593ae5020f10dbf4e1d752a188a7102f305f | |
parent | Remove unneeded setjmp.h (fix compilation on Debian "lenny") (diff) | |
download | qemu-f5fc40bb8133849618e0d05adc798c5f07f7b17f.tar.gz qemu-f5fc40bb8133849618e0d05adc798c5f07f7b17f.tar.xz qemu-f5fc40bb8133849618e0d05adc798c5f07f7b17f.zip |
target-alpha, target-ppc: Remove unnecessary setjmp.h include
Remove the include of setjmp.h from the cpu.h of target-alpha
and target-ppc. This is unnecessary because cpu-defs.h already
includes this header; this change brings these two targets
into line with all the rest.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | target-alpha/cpu.h | 2 | ||||
-rw-r--r-- | target-ppc/cpu.h | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/target-alpha/cpu.h b/target-alpha/cpu.h index 411bd55328..78caa796b6 100644 --- a/target-alpha/cpu.h +++ b/target-alpha/cpu.h @@ -28,8 +28,6 @@ #include "cpu-defs.h" -#include <setjmp.h> - #include "softfloat.h" #define TARGET_HAS_ICE 1 diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 84f8ff6748..d90336634d 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -75,8 +75,6 @@ #include "cpu-defs.h" -#include <setjmp.h> - #include "softfloat.h" #define TARGET_HAS_ICE 1 |