From: Maxim Ostapenko Date: Thu, 17 Aug 2017 11:58:13 +0000 (+0000) Subject: re PR target/81861 (ASan pr64820.c testcase segfaults with LTO and -fstack-protector... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b8d8d3ff49a530e6a2ea99d546f41497f3f96654;p=gcc.git re PR target/81861 (ASan pr64820.c testcase segfaults with LTO and -fstack-protector-strong) 2017-08-17 Maxim Ostapenko PR target/81861 * config/i386/i386.c (ix86_option_override_internal): Save target specific options after ix86_stack_protector_guard_reg was changed. From-SVN: r251145 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d4db491b1f2..088f312c843 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2017-08-17 Maxim Ostapenko + + PR target/81861 + * config/i386/i386.c (ix86_option_override_internal): Save target + specific options after ix86_stack_protector_guard_reg was changed. + 2017-08-17 Richard Biener PR tree-optimization/81827 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 1d88e4f247a..3720d27504b 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -6651,12 +6651,6 @@ ix86_option_override_internal (bool main_args_p, gcc_assert ((opts->x_target_flags & MASK_LONG_DOUBLE_64) == 0 || (opts->x_target_flags & MASK_LONG_DOUBLE_128) == 0); - /* Save the initial options in case the user does function specific - options. */ - if (main_args_p) - target_option_default_node = target_option_current_node - = build_target_option_node (opts); - /* Handle stack protector */ if (!opts_set->x_ix86_stack_protector_guard) opts->x_ix86_stack_protector_guard @@ -6740,6 +6734,12 @@ ix86_option_override_internal (bool main_args_p, free (str); } + /* Save the initial options in case the user does function specific + options. */ + if (main_args_p) + target_option_default_node = target_option_current_node + = build_target_option_node (opts); + return true; }