pa.md (zvdep_imm32): Renamed from zvdep_imm.
authorJeffrey A Law <law@cygnus.com>
Fri, 30 Jul 1999 10:51:02 +0000 (10:51 +0000)
committerJeff Law <law@gcc.gnu.org>
Fri, 30 Jul 1999 10:51:02 +0000 (04:51 -0600)
        * pa.md (zvdep_imm32): Renamed from zvdep_imm.
        (ashlsi3): Corresponding changes.

From-SVN: r28343

gcc/ChangeLog
gcc/config/pa/pa.md

index 6b52548ce7ddcf90ed23c7a0deb67c993cec0ece..3f88c97ec2461d10520e0eda9621e895e317f50b 100644 (file)
@@ -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)
index a1d2939f55b1414782dea5387d7aced93b8b2cd4..3fb5608b0f941a10140f3699e9d9c75eac966baf 100644 (file)
       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;
   [(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"
   [(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)