cgraphunit.c (record_call_1): Use walk_tree_without_duplicates.

* cgraphunit.c (record_call_1): Use walk_tree_without_duplicates.
(cgraph_optimize_function): Set current_function_decl to the
fndecl we're integrating from.

From-SVN: r71002
This commit is contained in:
Jeff Sturm 2003-09-02 19:03:49 +00:00 committed by Jeff Sturm
parent 3660e02f0d
commit 6438456842
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2003-09-02 Jeff Sturm <jsturm@one-point.com>
* 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 <ghazi@caip.rutgers.edu>
* builtins.def: Break out _Complex math functions into their

View file

@ -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)