diff options
author | Alan Modra <amodra@gmail.com> | 2010-03-26 09:31:41 +1030 |
---|---|---|
committer | Alan Modra <amodra@gcc.gnu.org> | 2010-03-26 09:31:41 +1030 |
commit | 9fa195b80015490594c3ba7e2fb48ad0c78cb92f (patch) | |
tree | 6ab1f42d31727da72729913d625359b7f2166550 /gcc/config/rs6000 | |
parent | 812398e4cfcb5ee641dbf8f8702d02c3eb026012 (diff) | |
download | gcc-9fa195b80015490594c3ba7e2fb48ad0c78cb92f.zip gcc-9fa195b80015490594c3ba7e2fb48ad0c78cb92f.tar.gz gcc-9fa195b80015490594c3ba7e2fb48ad0c78cb92f.tar.bz2 |
rs6000.md (cmptf_internal2): Correct comparison.
* config/rs6000/rs6000.md (cmptf_internal2): Correct comparison.
From-SVN: r157732
Diffstat (limited to 'gcc/config/rs6000')
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 50c4d61..73eca19 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -12814,7 +12814,7 @@ (set (match_dup 10) (minus:DF (match_dup 5) (match_dup 7))) (set (match_dup 9) (minus:DF (match_dup 6) (match_dup 8))) (set (match_dup 9) (plus:DF (match_dup 10) (match_dup 9))) - (set (match_dup 0) (compare:CCFP (match_dup 7) (match_dup 4))) + (set (match_dup 0) (compare:CCFP (match_dup 9) (match_dup 4))) (match_dup 12)] { REAL_VALUE_TYPE rv; |