diff options
author | David Edelsohn <dje@gcc.gnu.org> | 2001-11-23 22:30:33 -0500 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2001-11-23 22:30:33 -0500 |
commit | e7a4130eeb81963061c64571bda9a5d8fe4a6235 (patch) | |
tree | 50a9086f9d098043eb1f6d2d432a7051be6b5dfe /gcc | |
parent | b00378457a5be638dfec92b0e12659179810f17b (diff) | |
download | gcc-e7a4130eeb81963061c64571bda9a5d8fe4a6235.zip gcc-e7a4130eeb81963061c64571bda9a5d8fe4a6235.tar.gz gcc-e7a4130eeb81963061c64571bda9a5d8fe4a6235.tar.bz2 |
* Fix typo in cmptf pattern.
From-SVN: r47297
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 0af89e6..3cb1e2d 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -9913,8 +9913,8 @@ }") (define_expand "cmptf" - [(set (cc0) (compare (match_operand:DF 0 "gpc_reg_operand" "") - (match_operand:DF 1 "gpc_reg_operand" "")))] + [(set (cc0) (compare (match_operand:TF 0 "gpc_reg_operand" "") + (match_operand:TF 1 "gpc_reg_operand" "")))] "DEFAULT_ABI == ABI_AIX && TARGET_HARD_FLOAT && TARGET_LONG_DOUBLE_128" " |