diff options
| author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-26 10:03:01 +0000 |
|---|---|---|
| committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-26 10:03:01 +0000 |
| commit | 8d8c4c8d833e821376b00a1f83b44bb701824b16 (patch) | |
| tree | 80406a736a1a96412c44a033898bd544e1802903 /gcc/cgraphunit.c | |
| parent | e2fb03c949f9bd79575f457bdbcfbe7e7a326dd4 (diff) | |
| download | ppe42-gcc-8d8c4c8d833e821376b00a1f83b44bb701824b16.tar.gz ppe42-gcc-8d8c4c8d833e821376b00a1f83b44bb701824b16.zip | |
* cgraph.c (cgraph_function_possibly_inlined_p): Do not rely on DECL_INLINE.
* cgraphunit.c (record_cdtor_fn): Do not initialize DECL_INLINE
(cgraph_preserve_function_body_p): Do not rely on DECL_INLINE.
* dojump.c (clear_pending_stack_adjust): Likewise.
* print-tree.c (print_node): Ignore DECL_INLINE.
* tree-inline.c (inlinable_function_p): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138165 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraphunit.c')
| -rw-r--r-- | gcc/cgraphunit.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 674d6da012f..9f4f87c2451 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -172,7 +172,6 @@ record_cdtor_fn (tree fndecl) VEC_safe_push (tree, gc, static_dtors, fndecl); DECL_STATIC_DESTRUCTOR (fndecl) = 0; } - DECL_INLINE (fndecl) = 1; node = cgraph_node (fndecl); node->local.disregard_inline_limits = 1; cgraph_mark_reachable_node (node); @@ -1211,10 +1210,8 @@ bool cgraph_preserve_function_body_p (tree decl) { struct cgraph_node *node; - if (!cgraph_global_info_ready) - return (flag_really_no_inline - ? DECL_DISREGARD_INLINE_LIMITS (decl) - : DECL_INLINE (decl)); + + gcc_assert (cgraph_global_info_ready); /* Look if there is any clone around. */ for (node = cgraph_node (decl); node; node = node->next_clone) if (node->global.inlined_to) |

