diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-22 22:59:33 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-22 22:59:33 +0000 |
| commit | 18a866aed341ad13d97e9fe8b3f42d5fe6291ea9 (patch) | |
| tree | b9e27cf406c08c918514e4f2a75c193fce08c399 | |
| parent | b8c46ccc113f778b7d4bff12f6b15ad0a3b6d05f (diff) | |
| download | ppe42-gcc-18a866aed341ad13d97e9fe8b3f42d5fe6291ea9.tar.gz ppe42-gcc-18a866aed341ad13d97e9fe8b3f42d5fe6291ea9.zip | |
* config/i386/i386.md (smaxsf3): Fix mnemonic typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94086 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 2 | ||||
| -rw-r--r-- | gcc/config/i386/i386.md | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 29a1c6fd431..263364d5f9e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2005-01-22 Richard Henderson <rth@redhat.com> + * config/i386/i386.md (smaxsf3): Fix mnemonic typo. + * config/i386/i386.c (ix86_prepare_fp_compare_args): Fix is_sse test. 2005-01-22 Richard Henderson <rth@redhat.com> diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 380836e7a05..5ad64fafe30 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -17630,7 +17630,7 @@ (smax:SF (match_operand:SF 1 "nonimmediate_operand" "%0") (match_operand:SF 2 "nonimmediate_operand" "xm")))] "TARGET_SSE_MATH" - "minss\t{%2, %0|%0, %2}" + "maxss\t{%2, %0|%0, %2}" [(set_attr "type" "sseadd") (set_attr "mode" "SF")]) |

