diff options
author | David Edelsohn <edelsohn@gnu.org> | 1996-02-28 00:37:25 +0000 |
---|---|---|
committer | David Edelsohn <edelsohn@gnu.org> | 1996-02-28 00:37:25 +0000 |
commit | 375490e0a596633eb84479a8d81192bec71fcfb2 (patch) | |
tree | a0df9890f778fba68e059b2e25992b6c22904782 | |
parent | a66078ee0069ee44bf13f8b169080e4ded51e56a (diff) | |
download | gcc-375490e0a596633eb84479a8d81192bec71fcfb2.zip gcc-375490e0a596633eb84479a8d81192bec71fcfb2.tar.gz gcc-375490e0a596633eb84479a8d81192bec71fcfb2.tar.bz2 |
finish up use of 'H' in DImode shifts
From-SVN: r11359
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index db265fe..76f6c2e 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -4434,7 +4434,7 @@ (ashiftrt:DI (match_operand:DI 1 "gpc_reg_operand" "r") (match_operand:SI 2 "reg_or_cint_operand" "ri")))] "TARGET_POWERPC64" - "srad%I2 %0,%1,%2") + "srad%I2 %0,%1,%H2") (define_insn "" [(set (match_operand:CC 0 "cc_reg_operand" "=x") @@ -4443,7 +4443,7 @@ (const_int 0))) (clobber (match_scratch:DI 3 "=r"))] "TARGET_POWERPC64" - "srad%I2. %3,%1,%2" + "srad%I2. %3,%1,%H2" [(set_attr "type" "delayed_compare")]) (define_insn "" @@ -4454,7 +4454,7 @@ (set (match_operand:DI 0 "gpc_reg_operand" "=r") (ashiftrt:DI (match_dup 1) (match_dup 2)))] "TARGET_POWERPC64" - "srad%I2. %0,%1,%2" + "srad%I2. %0,%1,%H2" [(set_attr "type" "delayed_compare")]) (define_insn "anddi3" |