summaryrefslogtreecommitdiff
path: root/gcc/cgraph.h
diff options
context:
space:
mode:
authorjconner <jconner@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-28 17:14:57 +0000
committerjconner <jconner@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-28 17:14:57 +0000
commitb30512ddaa7113e8e351911b0aa98d8f000020a7 (patch)
treead9d93c4161ef8e99642c7ab70a87f2ea9c7c3ef /gcc/cgraph.h
parent5206b159e4c2d12e2904845dc68e8af2729a246e (diff)
downloadgcc-b30512ddaa7113e8e351911b0aa98d8f000020a7.tar.gz
* ipa-inline.c (cgraph_edge_badness): Update comments. Invert shift
direction of badness if negative. (cgraph_default_inline_p): Add reason to parameters, and assign it a value. (cgraph_decide_inlining_of_small_functions): New parameter in call to cgraph_default_inline_p. (cgraph_decide_inlining_incrementally): Likewise. * cgraphunit.c (decide_is_function_needed): Likewise. * cgraph.h (cgraph_default_inline_p): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102497 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r--gcc/cgraph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h
index d063d41906d..4e2a4c17d9d 100644
--- a/gcc/cgraph.h
+++ b/gcc/cgraph.h
@@ -287,5 +287,5 @@ int cgraph_postorder (struct cgraph_node **);
bool cgraph_decide_inlining_incrementally (struct cgraph_node *, bool);
void cgraph_clone_inlined_nodes (struct cgraph_edge *, bool);
void cgraph_mark_inline_edge (struct cgraph_edge *);
-bool cgraph_default_inline_p (struct cgraph_node *);
+bool cgraph_default_inline_p (struct cgraph_node *, const char **);
#endif /* GCC_CGRAPH_H */