diff options
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r-- | gcc/cgraph.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 229f8a3..8c79168 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -1659,7 +1659,8 @@ cgraph_mark_reachable_node (struct cgraph_node *node) /* Verify that function does not appear to be needed out of blue during the optimization process. This can happen for extern inlines when bodies was removed after inlining. */ - gcc_assert ((node->analyzed || DECL_EXTERNAL (node->decl))); + gcc_assert ((node->analyzed || node->in_other_partition + || DECL_EXTERNAL (node->decl))); } else notice_global_symbol (node->decl); |