diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2007-01-29 20:54:59 +0000 |
---|---|---|
committer | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2007-01-29 20:54:59 +0000 |
commit | 971005966f30c246ab1cfcaa537497a852d1be52 (patch) | |
tree | 690de7ce71e08dff972c0f43723819a504f8991f /gcc/tree-optimize.c | |
parent | b7f0fff23b429c50f31fadce173fe4d478fd6f1b (diff) | |
download | gcc-971005966f30c246ab1cfcaa537497a852d1be52.tar.gz |
tree-optimize.c (update_inlined_to_pointers): Delete unused function.
2007-01-29 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
* tree-optimize.c (update_inlined_to_pointers): Delete unused
function.
From-SVN: r121309
Diffstat (limited to 'gcc/tree-optimize.c')
-rw-r--r-- | gcc/tree-optimize.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/tree-optimize.c b/gcc/tree-optimize.c index 1299a856ffd..06adb457b41 100644 --- a/gcc/tree-optimize.c +++ b/gcc/tree-optimize.c @@ -436,24 +436,6 @@ tree_lowering_passes (tree fn) bitmap_obstack_release (NULL); pop_cfun (); } - -/* Update recursively all inlined_to pointers of functions - inlined into NODE to INLINED_TO. */ -static void -update_inlined_to_pointers (struct cgraph_node *node, - struct cgraph_node *inlined_to) -{ - struct cgraph_edge *e; - for (e = node->callees; e; e = e->next_callee) - { - if (e->callee->global.inlined_to) - { - e->callee->global.inlined_to = inlined_to; - update_inlined_to_pointers (e->callee, inlined_to); - } - } -} - /* For functions-as-trees languages, this performs all optimization and compilation for FNDECL. */ |