diff options
| author | ramana <ramana@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-23 23:33:39 +0000 |
|---|---|---|
| committer | ramana <ramana@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-23 23:33:39 +0000 |
| commit | cb41fde2729cf00291db8f0d8435c4259a1e6b66 (patch) | |
| tree | 9bd71adb21a6f1a5ffc329a032b2ba427b2d755e | |
| parent | 14565c53bd05a15f50d4964ac24370612e2b2716 (diff) | |
| download | ppe42-gcc-cb41fde2729cf00291db8f0d8435c4259a1e6b66.tar.gz ppe42-gcc-cb41fde2729cf00291db8f0d8435c4259a1e6b66.zip | |
2009-06-24 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
* config/arm/arm.c (arm_override_options): Fix braces and formatting from previous
commit.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@148885 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/arm/arm.c | 13 |
2 files changed, 12 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 58aa8e795bb..26ea6e5e3c6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-06-24 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> + + * config/arm/arm.c (arm_override_options): Fix braces and formatting from previous + commit. + 2009-06-23 Ian Lance Taylor <iant@google.com> * Makefile.in ($(out_object_file)): Depend upon $(DF_H). diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 7922edf2a19..a7e225f2207 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 |

