aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraph.h
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2009-05-21 18:59:11 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2009-05-21 18:59:11 +0000
commit33b92c9d47852cef1981cae8f28b29b7eac627d3 (patch)
tree62e2c3d89bdea5106831127b34a3952b40551f1d /gcc/cgraph.h
parent63487d11510ff85ef1750800b8b07bca3de63518 (diff)
downloadgcc-33b92c9d47852cef1981cae8f28b29b7eac627d3.zip
gcc-33b92c9d47852cef1981cae8f28b29b7eac627d3.tar.gz
gcc-33b92c9d47852cef1981cae8f28b29b7eac627d3.tar.bz2
cgraph.h (struct cgraph_node): Remove inline_decl member.
2009-05-21 Richard Guenther <rguenther@suse.de> * cgraph.h (struct cgraph_node): Remove inline_decl member. * ipa-inline.c (cgraph_mark_inline_edge): Do not check it. (cgraph_default_inline_p): Likewise. (cgraph_decide_inlining_incrementally): Likewise. From-SVN: r147776
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r--gcc/cgraph.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h
index 6f1e052..d391202 100644
--- a/gcc/cgraph.h
+++ b/gcc/cgraph.h
@@ -213,11 +213,6 @@ struct GTY((chain_next ("%h.next"), chain_prev ("%h.previous"))) cgraph_node {
unsigned alias : 1;
/* Set for nodes that was constructed and finalized by frontend. */
unsigned finalized_by_frontend : 1;
-
- /* In non-unit-at-a-time mode the function body of inline candidates is saved
- into clone before compiling so the function in original form can be
- inlined later. This pointer points to the clone. */
- tree inline_decl;
};
typedef struct cgraph_node *cgraph_node_ptr;