Commit 2aa3d033 by Uros Bizjak Committed by Uros Bizjak

i386.c (ix86_expand_fp_absneg_operator): Use SSE_FLOAT_MODE_P for use_sse computation.

	* config/i386/i386.c (ix86_expand_fp_absneg_operator): Use
	SSE_FLOAT_MODE_P for use_sse computation.

From-SVN: r94365
parent a29a2d84
2005-01-28 Uros Bizjak <uros@kss-loka.si>
* config/i386/i386.c (ix86_expand_fp_absneg_operator): Use
SSE_FLOAT_MODE_P for use_sse computation.
2005-01-28 Ralf Corsepius <ralf.corsepius@rtems.org>
PR target/19663
......
......@@ -8068,7 +8068,7 @@ ix86_expand_fp_absneg_operator (enum rtx_code code, enum machine_mode mode,
use_sse = true;
}
else if (TARGET_SSE_MATH)
use_sse = SSE_REG_MODE_P (mode);
use_sse = SSE_FLOAT_MODE_P (mode);
/* NEG and ABS performed with SSE use bitwise mask operations.
Create the appropriate mask now. */
......
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