Commit fd57a6e4 by Kazu Hirata Committed by Kazu Hirata

h8300.c (fix_bit_operand): Change the name of the last argument to "code" from "type".

	* config/h8300/h8300.c (fix_bit_operand): Change the name of
	the last argument to "code" from "type".

From-SVN: r78000
parent 6a415867
2004-02-17 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (fix_bit_operand): Change the name of
the last argument to "code" from "type".
2004-02-17 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c: Remove an extern declaration of
rtx_equal_function_value_matters.
......
......@@ -4070,7 +4070,7 @@ compute_a_rotate_length (rtx *operands)
operating insn. */
int
fix_bit_operand (rtx *operands, int what, enum rtx_code type)
fix_bit_operand (rtx *operands, int what, enum rtx_code code)
{
/* The bit_operand predicate accepts any memory during RTL generation, but
only 'U' memory afterwards, so if this is a MEM operand, we must force
......@@ -4107,7 +4107,7 @@ fix_bit_operand (rtx *operands, int what, enum rtx_code type)
operands[1] = force_reg (QImode, operands[1]);
{
rtx res = gen_reg_rtx (QImode);
switch (type)
switch (code)
{
case AND:
emit_insn (gen_andqi3_1 (res, operands[1], operands[2]));
......
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