Commit c7d26bc1 by Richard Kenner

(num_operands): MATCH_PARALLEL also represents an operand.

From-SVN: r1851
parent 0e01e0a2
...@@ -61,7 +61,7 @@ num_operands (x) ...@@ -61,7 +61,7 @@ num_operands (x)
if (code == MATCH_OPERAND) if (code == MATCH_OPERAND)
return 1; return 1;
if (code == MATCH_OPERATOR) if (code == MATCH_OPERATOR || code == MATCH_PARALLEL)
count++; count++;
for (i = 0; i < GET_RTX_LENGTH (code); i++) for (i = 0; i < GET_RTX_LENGTH (code); i++)
......
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