diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-17 18:18:34 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-17 18:18:34 +0000 |
commit | bfe6deb6e2d887eb2c42889913795dbaa533f89c (patch) | |
tree | 906fc788264da42655ef49a3bc2f23ec595ed627 /gcc | |
parent | aa7bb50e310e82bc3751749d570128c1142e885a (diff) | |
download | gcc-bfe6deb6e2d887eb2c42889913795dbaa533f89c.tar.gz |
* config/rs6000/dfp.md (nabsdd2_fpr): Correct mode.
(nabstd2_fpr): Same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@148621 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/dfp.md | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 31d2264643b..1a5a9a637b6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-06-17 David Edelsohn <edelsohn@gnu.org> + + * config/rs6000/dfp.md (nabsdd2_fpr): Correct mode. + (nabstd2_fpr): Same. + 2009-06-17 Steve Ellcey <sje@cup.hp.com> * expr.c (expand_assignment): Change complex type check. diff --git a/gcc/config/rs6000/dfp.md b/gcc/config/rs6000/dfp.md index 377023b0491..eb679a918e2 100644 --- a/gcc/config/rs6000/dfp.md +++ b/gcc/config/rs6000/dfp.md @@ -180,7 +180,7 @@ (define_insn "*nabsdd2_fpr" [(set (match_operand:DD 0 "gpc_reg_operand" "=f") - (neg:DD (abs:DD (match_operand:DF 1 "gpc_reg_operand" "f"))))] + (neg:DD (abs:DD (match_operand:DD 1 "gpc_reg_operand" "f"))))] "TARGET_HARD_FLOAT && TARGET_FPRS" "fnabs %0,%1" [(set_attr "type" "fp")]) @@ -511,7 +511,7 @@ (define_insn "*nabstd2_fpr" [(set (match_operand:TD 0 "gpc_reg_operand" "=f") - (neg:TD (abs:TD (match_operand:DF 1 "gpc_reg_operand" "f"))))] + (neg:TD (abs:TD (match_operand:TD 1 "gpc_reg_operand" "f"))))] "TARGET_HARD_FLOAT && TARGET_FPRS" "fnabs %0,%1" [(set_attr "type" "fp")]) |