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:
parent
a29a2d844b
commit
2aa3d033a1
@ -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
|
||||
|
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user