aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraph.h
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2011-04-20 00:28:54 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2011-04-19 22:28:54 +0000
commitfee8b6dadd3847d6cdc5e48a467be48ce16fd71e (patch)
tree518ceb62ac7521423992dc5befe95e7c201bee2d /gcc/cgraph.h
parent61eca8d71b276c84155b88d7fca656c49ff73b98 (diff)
downloadgcc-fee8b6dadd3847d6cdc5e48a467be48ce16fd71e.zip
gcc-fee8b6dadd3847d6cdc5e48a467be48ce16fd71e.tar.gz
gcc-fee8b6dadd3847d6cdc5e48a467be48ce16fd71e.tar.bz2
cgraph.h (save_inline_function_body): Remove.
* cgraph.h (save_inline_function_body): Remove. * ipa-inline-transform.c: New file, broke out of... * ipa-inline.c: ... this one; Update toplevel comment. (ncalls_inlined, nfunctions_inlined): Move to ipa-inline-transform.c; make global. (update_noncloned_frequencies): Move to ipa-inline-transform.c (cgraph_mark_inline_edge): Rename to inline_call; move to ipa-inline-transform.c. (cgraph_clone_inlined_nodes): Rename to clone_inlined_nodes; move to ipa-inline-transform.c (recursive_inlining, inline_small_functions, flatten_function, ipa_inline, inline_always_inline_functions, early_inline_small_functions): Update. (inline_transform): Move to ipa-inline-transform.c. * ipa-inline.h (inline_call, inline_transform, clone_inlined_nodes): Declare. * Makefile.in (ipa-inline-transform.o): New file. * cgraphunit.c (save_inline_function_body): Move to ipa-inline-transform.c From-SVN: r172739
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r--gcc/cgraph.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h
index a9c5879..032c837 100644
--- a/gcc/cgraph.h
+++ b/gcc/cgraph.h
@@ -595,7 +595,6 @@ struct cgraph_node *cgraph_function_versioning (struct cgraph_node *,
const char *);
void tree_function_versioning (tree, tree, VEC (ipa_replace_map_p,gc)*, bool, bitmap,
bitmap, basic_block);
-struct cgraph_node *save_inline_function_body (struct cgraph_node *);
void record_references_in_initializer (tree, bool);
bool cgraph_process_new_functions (void);
@@ -927,7 +926,6 @@ cgraph_edge_recursive_p (struct cgraph_edge *e)
return e->caller->decl == e->callee->decl;
}
-
/* FIXME: inappropriate dependency of cgraph on IPA. */
#include "ipa-ref-inline.h"