aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-07-30 10:51:02 +0000
committerJeff Law <law@gcc.gnu.org>1999-07-30 04:51:02 -0600
commit93b69d0f0d4b3a3a4b6481c50720aa351f77e5e5 (patch)
tree935d98369a166bbd254ca249d8c57e52589fed7d
parent6fda0f5b2a5612b5d70e6169fdfbb6c8981840c7 (diff)
downloadgcc-93b69d0f0d4b3a3a4b6481c50720aa351f77e5e5.zip
gcc-93b69d0f0d4b3a3a4b6481c50720aa351f77e5e5.tar.gz
gcc-93b69d0f0d4b3a3a4b6481c50720aa351f77e5e5.tar.bz2
pa.md (zvdep_imm32): Renamed from zvdep_imm.
* pa.md (zvdep_imm32): Renamed from zvdep_imm. (ashlsi3): Corresponding changes. From-SVN: r28343
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/config/pa/pa.md8
2 files changed, 7 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6b52548..3f88c97 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,8 @@
Fri Jul 30 03:00:41 1999 Jeffrey A Law (law@cygnus.com)
+ * pa.md (zvdep_imm32): Renamed from zvdep_imm.
+ (ashlsi3): Corresponding changes.
+
* pa.c (compute_zdepwi_operands): Renamed from compute_zdepi_operands.
Thu Jul 29 18:37:13 1999 Jeffrey A Law (law@cygnus.com)
diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md
index a1d2939..3fb5608 100644
--- a/gcc/config/pa/pa.md
+++ b/gcc/config/pa/pa.md
@@ -3881,7 +3881,7 @@
rtx temp = gen_reg_rtx (SImode);
emit_insn (gen_subsi3 (temp, GEN_INT (31), operands[2]));
if (GET_CODE (operands[1]) == CONST_INT)
- emit_insn (gen_zvdep_imm (operands[0], operands[1], temp));
+ emit_insn (gen_zvdep_imm32 (operands[0], operands[1], temp));
else
emit_insn (gen_zvdep32 (operands[0], operands[1], temp));
DONE;
@@ -3900,10 +3900,10 @@
[(set_attr "type" "shift")
(set_attr "length" "4")])
-; Match cases of op1 a CONST_INT here that zvdep_imm doesn't handle.
+; Match cases of op1 a CONST_INT here that zvdep_imm32 doesn't handle.
; Doing it like this makes slightly better code since reload can
; replace a register with a known value in range -16..15 with a
-; constant. Ideally, we would like to merge zvdep32 and zvdep_imm,
+; constant. Ideally, we would like to merge zvdep32 and zvdep_imm32,
; but since we have no more CONST_OK... characters, that is not
; possible.
(define_insn "zvdep32"
@@ -3918,7 +3918,7 @@
[(set_attr "type" "shift,shift")
(set_attr "length" "4,4")])
-(define_insn "zvdep_imm"
+(define_insn "zvdep_imm32"
[(set (match_operand:SI 0 "register_operand" "=r")
(ashift:SI (match_operand:SI 1 "lhs_lshift_cint_operand" "")
(minus:SI (const_int 31)