diff options
Diffstat (limited to 'gcc/lto-cgraph.c')
-rw-r--r-- | gcc/lto-cgraph.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/lto-cgraph.c b/gcc/lto-cgraph.c index 14916473640..fbf0df21c24 100644 --- a/gcc/lto-cgraph.c +++ b/gcc/lto-cgraph.c @@ -227,6 +227,8 @@ lto_output_node (struct lto_simple_output_block *ob, struct cgraph_node *node, local static nodes to prevent clashes with other local statics. */ if (boundary_p) { + /* Inline clones can not be part of boundary. */ + gcc_assert (!node->global.inlined_to); local = 0; externally_visible = 1; inlinable = 0; |