From: manu Date: Mon, 29 Jan 2007 20:54:59 +0000 (+0000) Subject: 2007-01-29 Manuel Lopez-Ibanez X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e00076da6d4b2beea95861f41ef32d6aaac272d3;p=thirdparty%2Fgcc.git 2007-01-29 Manuel Lopez-Ibanez * tree-optimize.c (update_inlined_to_pointers): Delete unused function. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121309 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3cf0452b2a9f..cc1f0c362f43 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-01-29 Manuel Lopez-Ibanez + + * tree-optimize.c (update_inlined_to_pointers): Delete unused + function. + 2007-01-29 Janis Johnson * Makefile.in (USER_H): Remove decfloat.h. diff --git a/gcc/tree-optimize.c b/gcc/tree-optimize.c index 1299a856ffd2..06adb457b416 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. */