diff options
author | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-04 21:21:36 +0000 |
---|---|---|
committer | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-04 21:21:36 +0000 |
commit | 0fe680424fb94569ab446264f5280c9ba859dabd (patch) | |
tree | edecb1ac540effb999058b7890aead137e40f670 /gcc/config/ia64 | |
parent | 4cad3320a449d20eeda8892fdad37e37f0a5fd56 (diff) | |
download | gcc-0fe680424fb94569ab446264f5280c9ba859dabd.tar.gz |
* config/ia64/ia64.md (divdf3_internal_thr): Fix algorithm.
* testsuite/gcc.dg/20040303-1.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78934 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/ia64')
-rw-r--r-- | gcc/config/ia64/ia64.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/ia64/ia64.md b/gcc/config/ia64/ia64.md index 39694b1baed..1c0cc1230e5 100644 --- a/gcc/config/ia64/ia64.md +++ b/gcc/config/ia64/ia64.md @@ -3177,7 +3177,7 @@ (cond_exec (ne (match_dup 5) (const_int 0)) (parallel [(set (match_dup 9) (float_truncate:DF - (mult:XF (match_dup 7) (match_dup 3)))) + (mult:XF (match_dup 7) (match_dup 6)))) (use (const_int 1))])) (cond_exec (ne (match_dup 5) (const_int 0)) (parallel [(set (match_dup 4) |