diff options
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 4631417..6989d40 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -3297,7 +3297,7 @@ c_find_base_decl (t) case '1': case '2': case '3': - for (i = tree_code_length [(int) TREE_CODE (t)]; --i >= 0;) + for (i = TREE_CODE_LENGTH (TREE_CODE (t)); --i >= 0;) { tree d = c_find_base_decl (TREE_OPERAND (t, i)); if (d) |