Commit 1a3a9152 by Stuart Henderson

Originally From Bernd Schmidt

2011-05-03  Stuart Henderson  <shenders@gcc.gnu.org>
   
        Originally From Bernd Schmidt
        * config/bfin/bfin.c (override_options): Disable -fstack-limit for
        FD-PIC.

From-SVN: r173306
parent 7134c090
2011-05-03 Stuart Henderson <shenders@gcc.gnu.org>
Originally From Bernd Schmidt
* config/bfin/bfin.c (override_options): Disable -fstack-limit for
FD-PIC.
2011-05-03 Jeff Law <law@redhat.com> 2011-05-03 Jeff Law <law@redhat.com>
* tree-ssa-threadupdate.c (THREAD_TARGET): define. * tree-ssa-threadupdate.c (THREAD_TARGET): define.
......
...@@ -2676,6 +2676,12 @@ bfin_option_override (void) ...@@ -2676,6 +2676,12 @@ bfin_option_override (void)
if (global_options_set.x_bfin_library_id && ! TARGET_ID_SHARED_LIBRARY) if (global_options_set.x_bfin_library_id && ! TARGET_ID_SHARED_LIBRARY)
error ("-mshared-library-id= specified without -mid-shared-library"); error ("-mshared-library-id= specified without -mid-shared-library");
if (stack_limit_rtx && TARGET_FDPIC)
{
warning (0, "-fstack-limit- options are ignored with -mfdpic; use -mstack-check-l1");
stack_limit_rtx = NULL_RTX;
}
if (stack_limit_rtx && TARGET_STACK_CHECK_L1) if (stack_limit_rtx && TARGET_STACK_CHECK_L1)
error ("can%'t use multiple stack checking methods together"); error ("can%'t use multiple stack checking methods together");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment