aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorRamana Radhakrishnan <ramana.radhakrishnan@arm.com>2009-06-23 23:33:39 +0000
committerRamana Radhakrishnan <ramana@gcc.gnu.org>2009-06-23 23:33:39 +0000
commit9df5bfe41117cf19629557337b0a02c88f2575e0 (patch)
tree9bd71adb21a6f1a5ffc329a032b2ba427b2d755e /gcc/config
parent3259554a05a0c61919653257c71c741e57913fb6 (diff)
downloadgcc-9df5bfe41117cf19629557337b0a02c88f2575e0.zip
gcc-9df5bfe41117cf19629557337b0a02c88f2575e0.tar.gz
gcc-9df5bfe41117cf19629557337b0a02c88f2575e0.tar.bz2
arm.c (arm_override_options): Fix braces and formatting from previous commit.
2009-06-24 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> * config/arm/arm.c (arm_override_options): Fix braces and formatting from previous commit. From-SVN: r148885
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/arm/arm.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index 7922edf..a7e225f 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -1614,12 +1614,13 @@ arm_override_options (void)
error ("FPA is unsupported in the AAPCS");
if (TARGET_AAPCS_BASED)
- if (TARGET_CALLER_INTERWORKING)
- error ("AAPCS doesn't support -mcaller-super-interworking");
- else
- if (TARGET_CALLEE_INTERWORKING)
- error ("AAPCS doesn't support -mcallee-super-interworking");
-
+ {
+ if (TARGET_CALLER_INTERWORKING)
+ error ("AAPCS does not support -mcaller-super-interworking");
+ else
+ if (TARGET_CALLEE_INTERWORKING)
+ error ("AAPCS does not support -mcallee-super-interworking");
+ }
/* FPA and iWMMXt are incompatible because the insn encodings overlap.
VFP and iWMMXt can theoretically coexist, but it's unlikely such silicon