diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-06 00:06:05 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-06 00:06:05 +0000 |
| commit | 7a1463d63f2c4e2f94362306ea76ea0405bdb185 (patch) | |
| tree | e5abbdd0bcacd6b5dbc4dc478ff0ad3cc3214639 | |
| parent | e9c622c716fd1bcb475d45d9dc4ee1da46900b1b (diff) | |
| download | ppe42-gcc-7a1463d63f2c4e2f94362306ea76ea0405bdb185.tar.gz ppe42-gcc-7a1463d63f2c4e2f94362306ea76ea0405bdb185.zip | |
* config/i386/i386.md (floatsidf2): Conditionalize on hard-float.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50339 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/i386/i386.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 865fce52f1a..395d6fb4fbb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-03-05 Richard Henderson <rth@redhat.com> + + * config/i386/i386.md (floatsidf2): Conditionalize on hard-float. + 2002-03-05 Danny Smith <dannysmith@users.sourceforge.net> * gthr-win32.h (__GTHREAD_MUTEX_INIT_DEFAULT): Define. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index a62fd2fcf38..41d864977fd 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -5136,7 +5136,7 @@ (define_expand "floatsidf2" [(set (match_operand:DF 0 "register_operand" "") (float:DF (match_operand:SI 1 "nonimmediate_operand" "")))] - "" + "TARGET_80387 || TARGET_SSE2" "") (define_insn "*floatsidf2_i387" |

