Commit 6fda0f5b by Jeffrey A Law Committed by Jeff Law

* pa.c (compute_zdepwi_operands): Renamed from compute_zdepi_operands.

From-SVN: r28342
parent 59fa4a59
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) Thu Jul 29 18:37:13 1999 Jeffrey A Law (law@cygnus.com)
* pa.h (FIRST_PARM_CALLER_OFFSET): Delete. * pa.h (FIRST_PARM_CALLER_OFFSET): Delete.
......
...@@ -1622,7 +1622,7 @@ singlemove_string (operands) ...@@ -1622,7 +1622,7 @@ singlemove_string (operands)
useful for copying IMM to a register using the zdepi useful for copying IMM to a register using the zdepi
instructions. Store the immediate value to insert in OP[0]. */ instructions. Store the immediate value to insert in OP[0]. */
void void
compute_zdepi_operands (imm, op) compute_zdepwi_operands (imm, op)
unsigned HOST_WIDE_INT imm; unsigned HOST_WIDE_INT imm;
unsigned *op; unsigned *op;
{ {
...@@ -3799,7 +3799,7 @@ print_operand (file, x, code) ...@@ -3799,7 +3799,7 @@ print_operand (file, x, code)
case 'Z': case 'Z':
{ {
unsigned op[3]; 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]); fprintf (file, "%d,%d,%d", op[0], op[1], op[2]);
return; return;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment