Commit 4c80d5ac by Steve Ellcey Committed by Steve Ellcey

genrecog.c (compute_predicate_codes): Use op0_codes instead of codes.

	* genrecog.c (compute_predicate_codes): Use op0_codes
	instead of codes.

From-SVN: r87257
parent 2ec3ab99
2004-09-09 Steve Ellcey <sje@cup.hp.com>
* genrecog.c (compute_predicate_codes): Use op0_codes
instead of codes.
2004-09-09 Ulrich Weigand <uweigand@de.ibm.com>
* ra-colorize.c (hardregset_to_string): Adapt to HARD_REG_SET
......
......@@ -254,7 +254,7 @@ compute_predicate_codes (rtx exp, char codes[NUM_RTX_CODE])
case NOT:
compute_predicate_codes (XEXP (exp, 0), op0_codes);
for (i = 0; i < NUM_RTX_CODE; i++)
codes[i] = TRISTATE_NOT (codes[i]);
codes[i] = TRISTATE_NOT (op0_codes[i]);
break;
case IF_THEN_ELSE:
......
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