diff options
author | Segher Boessenkool <segher@kernel.crashing.org> | 2016-06-02 09:19:07 +0200 |
---|---|---|
committer | Segher Boessenkool <segher@gcc.gnu.org> | 2016-06-02 09:19:07 +0200 |
commit | 521466e5cc8aa2b45f41c2aa71915eab1290c617 (patch) | |
tree | 4f7733eb7cbcc8b0f8d996efd9b20a1dc2973b8b /gcc | |
parent | 60fa9d0a3df16be7c02c87f8731cf87d7cf3f89f (diff) | |
download | gcc-521466e5cc8aa2b45f41c2aa71915eab1290c617.zip gcc-521466e5cc8aa2b45f41c2aa71915eab1290c617.tar.gz gcc-521466e5cc8aa2b45f41c2aa71915eab1290c617.tar.bz2 |
rs6000: Correct the "length" attribute for trunctddd2
* config/rs6000/dfp.md (trunctddd2): Correct the "length" attribute.
From-SVN: r237026
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/dfp.md | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index acc9994..d23e27d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2016-06-02 Segher Boessenkool <segher@kernel.crashing.org> + + * config/rs6000/dfp.md (trunctddd2): Correct the "length" attribute. + 2016-06-01 David Malcolm <dmalcolm@redhat.com> * config/rl78/rl78.c (rl78_expand_prologue): Convert local diff --git a/gcc/config/rs6000/dfp.md b/gcc/config/rs6000/dfp.md index a631ff5..7029eb6 100644 --- a/gcc/config/rs6000/dfp.md +++ b/gcc/config/rs6000/dfp.md @@ -173,7 +173,8 @@ (clobber (match_scratch:TD 2 "=d"))] "TARGET_DFP" "drdpq %2,%1\;fmr %0,%2" - [(set_attr "type" "fp")]) + [(set_attr "type" "fp") + (set_attr "length" "8")]) (define_insn "adddd3" [(set (match_operand:DD 0 "gpc_reg_operand" "=d") |