diff options
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 362211a..2d3958f 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -1741,7 +1741,8 @@ copy_bb (copy_body_data *id, basic_block bb, int frequency_scale, most common reason for missing edges). */ gcc_assert (dest->needed || !dest->analyzed || dest->address_taken - || !id->src_node->analyzed); + || !id->src_node->analyzed + || !id->dst_node->analyzed); if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES) cgraph_create_edge_including_clones (id->dst_node, dest, orig_stmt, stmt, bb->count, |