From: Jeffrey A Law Date: Fri, 30 Jul 1999 09:01:20 +0000 (+0000) Subject: * pa.c (compute_zdepwi_operands): Renamed from compute_zdepi_operands. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6fda0f5b2a5612b5d70e6169fdfbb6c8981840c7;p=gcc.git * pa.c (compute_zdepwi_operands): Renamed from compute_zdepi_operands. From-SVN: r28342 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c097f0a0f8f..6b52548ce7d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 42234321b8a..be9f65e3ba3 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -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; }