Commit 9064c533 by Uros Bizjak Committed by Uros Bizjak

i386.c (override_options): Correct x86_sahf setting condition.

	* config/i386/i386.c (override_options): Correct x86_sahf
	setting condition.

From-SVN: r125948
parent 1ad91955
2007-06-22 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.c (override_options): Correct x86_sahf
setting condition.
2007-06-21 David Daney <ddaney@avtrex.com>
PR target/32406
......
......@@ -2059,7 +2059,7 @@ override_options (void)
x86_popcnt = true;
if (processor_alias_table[i].flags & (PTA_PREFETCH_SSE | PTA_SSE))
x86_prefetch_sse = true;
if ((processor_alias_table[i].flags & PTA_NO_SAHF) && !TARGET_64BIT)
if (!(TARGET_64BIT && (processor_alias_table[i].flags & PTA_NO_SAHF)))
x86_sahf = true;
break;
......
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