diff options
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 2187649..0c72fe6 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -1391,7 +1391,7 @@ expand_call_inline (tree *tp, int *walk_subtrees, void *data) if (TREE_CODE (*tp) == TARGET_EXPR) { #if 0 - int i, len = first_rtl_op (TARGET_EXPR); + int i, len = TREE_CODE_LENGTH (TARGET_EXPR); /* We're walking our own subtrees. */ *walk_subtrees = 0; @@ -2088,7 +2088,7 @@ walk_tree (tree *tp, walk_tree_fn func, void *data, struct pointer_set_t *pset) int i, len; /* Walk over all the sub-trees of this operand. */ - len = first_rtl_op (code); + len = TREE_CODE_LENGTH (code); /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same. But, we only want to walk once. */ if (code == TARGET_EXPR |