Commit e4135fa5 by Richard Stallman

(collect_iterators): Cast tree code to int for indexing.

From-SVN: r3913
parent 96c82232
...@@ -223,7 +223,7 @@ collect_iterators (exp, list) ...@@ -223,7 +223,7 @@ collect_iterators (exp, list)
case 'e': case 'e':
case 'r': case 'r':
{ {
int num_args = tree_code_length[TREE_CODE (exp)]; int num_args = tree_code_length[(int) TREE_CODE (exp)];
int i; int i;
/* Some tree codes have RTL, not trees, as operands. */ /* Some tree codes have RTL, not trees, as operands. */
......
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