Commit 8fabbfe6 by Richard Kenner

(max_operand_1): Treat MATCH_PAR_DUP just like MATCH_OP_DUP.

(gen_exp): Treat it like MATCH_PARALLEL here.

From-SVN: r1832
parent 13ed0ef0
......@@ -83,7 +83,7 @@ max_operand_1 (x)
if (code == MATCH_OPERAND || code == MATCH_OPERATOR
|| code == MATCH_PARALLEL)
max_opno = MAX (max_opno, XINT (x, 0));
if (code == MATCH_DUP || code == MATCH_OP_DUP)
if (code == MATCH_DUP || code == MATCH_OP_DUP || code == MATCH_PAR_DUP)
max_dup_opno = MAX (max_dup_opno, XINT (x, 0));
fmt = GET_RTX_FORMAT (code);
......@@ -182,6 +182,7 @@ gen_exp (x)
return;
case MATCH_PARALLEL:
case MATCH_PAR_DUP:
printf ("operand%d", XINT (x, 0));
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