diff options
| author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-26 18:33:25 +0000 |
|---|---|---|
| committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-26 18:33:25 +0000 |
| commit | b01a2bfd233b20faeee936406b774fc24b81f8d1 (patch) | |
| tree | d0a06d3d695797085e118a2ff0f26da9463fae88 | |
| parent | 735b10df427b5bd0b5e8d506fb92bff3b5f28172 (diff) | |
| download | ppe42-gcc-b01a2bfd233b20faeee936406b774fc24b81f8d1.tar.gz ppe42-gcc-b01a2bfd233b20faeee936406b774fc24b81f8d1.zip | |
* (ix86_expand_fp_movcc): Re-enable SSE conditional move generation.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41602 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/i386/i386.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 05ebf9fb53d..dc1876d03a8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Thu Apr 26 20:28:21 CEST 2001 Jan Hubicka <jh@suse.cz> + + * (ix86_expand_fp_movcc): Re-enable SSE conditional move generation. + Thu Apr 26 19:20:28 CEST 2001 Jan Hubicka <jh@suse.cz> * i386.md (abs/neg splitter): Fix calculation of sign bit for TFmodes diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index a0e40ba309e..9831811158d 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -6613,8 +6613,7 @@ ix86_expand_fp_movcc (operands) /* We may be called from the post-reload splitter. */ && (!REG_P (operands[0]) || SSE_REG_P (operands[0]) - || REGNO (operands[0]) >= FIRST_PSEUDO_REGISTER) - && 0) + || REGNO (operands[0]) >= FIRST_PSEUDO_REGISTER)) { rtx op0 = ix86_compare_op0, op1 = ix86_compare_op1; code = GET_CODE (operands[1]); |

