* pa.c (compute_zdepwi_operands): Renamed from compute_zdepi_operands.
authorJeffrey A Law <law@cygnus.com>
Fri, 30 Jul 1999 09:01:20 +0000 (09:01 +0000)
committerJeff Law <law@gcc.gnu.org>
Fri, 30 Jul 1999 09:01:20 +0000 (03:01 -0600)
From-SVN: r28342

gcc/ChangeLog
gcc/config/pa/pa.c

index c097f0a0f8f4cef819b976ac8a711432ae767e54..6b52548ce7ddcf90ed23c7a0deb67c993cec0ece 100644 (file)
@@ -1,3 +1,7 @@
+Fri Jul 30 03:00:41 1999  Jeffrey A Law  (law@cygnus.com)
+
+       * pa.c (compute_zdepwi_operands): Renamed from compute_zdepi_operands.
+
 Thu Jul 29 18:37:13 1999  Jeffrey A Law  (law@cygnus.com)
 
        * pa.h (FIRST_PARM_CALLER_OFFSET): Delete.
index 42234321b8a18d2ca0d82eec990cf47c662d1e8e..be9f65e3ba3783a693d639d68b1be86902963d9f 100644 (file)
@@ -1622,7 +1622,7 @@ singlemove_string (operands)
    useful for copying IMM to a register using the zdepi
    instructions.  Store the immediate value to insert in OP[0].  */
 void
-compute_zdepi_operands (imm, op)
+compute_zdepwi_operands (imm, op)
      unsigned HOST_WIDE_INT imm;
      unsigned *op;
 {
@@ -3799,7 +3799,7 @@ print_operand (file, x, code)
     case 'Z':
       {
        unsigned op[3];
-       compute_zdepi_operands (INTVAL (x), op);
+       compute_zdepwi_operands (INTVAL (x), op);
        fprintf (file, "%d,%d,%d", op[0], op[1], op[2]);
        return;
       }