* opts.c (decode_options): Don't test whether the target supports
split stack if flag_split_stack == 0.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164695
138bc75d-0d04-0410-961f-
82ee72b054a4
+2010-09-28 Ian Lance Taylor <iant@google.com>
+
+ PR target/45815
+ * opts.c (decode_options): Don't test whether the target supports
+ split stack if flag_split_stack == 0.
+
2010-09-28 Jan Hubicka <jh@suse.cz>
* builtin-attrs.def (ATTR_LEAF): New attribute.
default value if they choose based on other options. */
if (flag_split_stack == -1)
flag_split_stack = 0;
- else
+ else if (flag_split_stack)
{
if (!targetm.supports_split_stack (true))
{