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
This commit is contained in:
Uros Bizjak 2005-01-28 10:16:50 +01:00 committed by Uros Bizjak
parent a29a2d844b
commit 2aa3d033a1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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. */