diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-07-30 09:01:20 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-07-30 03:01:20 -0600 |
commit | 6fda0f5b2a5612b5d70e6169fdfbb6c8981840c7 (patch) | |
tree | f4b6d1344328959484194125cac69d65935ffb4e /gcc | |
parent | 59fa4a5936a92800a07d95de90e54d79d9601201 (diff) | |
download | gcc-6fda0f5b2a5612b5d70e6169fdfbb6c8981840c7.zip gcc-6fda0f5b2a5612b5d70e6169fdfbb6c8981840c7.tar.gz gcc-6fda0f5b2a5612b5d70e6169fdfbb6c8981840c7.tar.bz2 |
* pa.c (compute_zdepwi_operands): Renamed from compute_zdepi_operands.
From-SVN: r28342
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/pa/pa.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c097f0a..6b52548 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 4223432..be9f65e 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; } |