From f5fc40bb8133849618e0d05adc798c5f07f7b17f Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Mon, 4 Jul 2011 22:02:46 +0100 Subject: [PATCH] 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 Signed-off-by: Blue Swirl --- target-alpha/cpu.h | 2 -- target-ppc/cpu.h | 2 -- 2 files changed, 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 - #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 - #include "softfloat.h" #define TARGET_HAS_ICE 1 -- GitLab