diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4a5dd3cc996..28e64ef1153 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-09-02 Jeff Sturm + + * cgraphunit.c (record_call_1): Use walk_tree_without_duplicates. + (cgraph_optimize_function): Set current_function_decl to the + fndecl we're integrating from. + 2003-09-02 Kaveh R. Ghazi * builtins.def: Break out _Complex math functions into their diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 02a569f816a..8fe98fb194c 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -122,7 +122,8 @@ record_call_1 (tree *tp, int *walk_subtrees, void *data) taken by something that is not a function call. So only walk the function parameter list, skip the other subtrees. */ - walk_tree (&TREE_OPERAND (*tp, 1), record_call_1, data, NULL); + walk_tree_without_duplicates (&TREE_OPERAND (*tp, 1), + record_call_1, data); *walk_subtrees = 0; } } @@ -292,7 +293,7 @@ cgraph_optimize_function (struct cgraph_node *node) timevar_push (TV_INTEGRATION); /* optimize_inline_calls avoids inlining of current_function_decl. */ - current_function_decl = 0; + current_function_decl = decl; if (flag_inline_trees) optimize_inline_calls (decl); if (node->nested)