arm.c (arm_override_options): Remove superfluous test.

* config/arm/arm.c (arm_override_options): Remove superfluous test.
        Fix indentation.

From-SVN: r163667
This commit is contained in:
John Tytgat 2010-08-31 08:42:21 +00:00 committed by Nick Clifton
parent 658af27df6
commit 4546a2efe3
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2010-08-31 John Tytgat <John.Tytgat@aaug.net>
* config/arm/arm.c (arm_override_options): Remove superfluous test.
Fix indentation.
2010-08-31 Eric Botcazou <ebotcazou@adacore.com>
* dwarf2out.c (gen_decl_die) <CONST_DECL>: Do not skip in Ada.

View File

@ -1545,7 +1545,7 @@ arm_override_options (void)
/* Callee super interworking implies thumb interworking. Adding
this to the flags here simplifies the logic elsewhere. */
if (TARGET_THUMB && TARGET_CALLEE_INTERWORKING)
target_flags |= MASK_INTERWORK;
target_flags |= MASK_INTERWORK;
/* TARGET_BACKTRACE calls leaf_function_p, which causes a crash if done
from here where no function is being compiled currently. */
@ -1555,9 +1555,6 @@ arm_override_options (void)
if (TARGET_ARM && TARGET_CALLEE_INTERWORKING)
warning (0, "enabling callee interworking support is only meaningful when compiling for the Thumb");
if (TARGET_ARM && TARGET_CALLER_INTERWORKING)
warning (0, "enabling caller interworking support is only meaningful when compiling for the Thumb");
if (TARGET_APCS_STACK && !TARGET_APCS_FRAME)
{
warning (0, "-mapcs-stack-check incompatible with -mno-apcs-frame");