Commit 98e146ab by Jan Hubicka Committed by Jan Hubicka

re PR target/37094 (Ada build broken for i586)


	PR target/37094
	* i386.c (standard_80387_constant_p): Use optimize_size.

From-SVN: r139522
parent 3434e9a4
2008-08-23 Jan Hubicka <jh@suse.cz>
PR target/37094
* i386.c (standard_80387_constant_p): Use optimize_size.
2008-08-23 Ira Rosen <irar@il.ibm.com>
PR tree-optimization/37161
......
......@@ -6692,7 +6692,7 @@ standard_80387_constant_p (rtx x)
/* For XFmode constants, try to find a special 80387 instruction when
optimizing for size or on those CPUs that benefit from them. */
if (mode == XFmode
&& (optimize_insn_for_size_p () || TARGET_EXT_80387_CONSTANTS))
&& (optimize_size || TARGET_EXT_80387_CONSTANTS))
{
int i;
......
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