* tree-inline.c (update_ssa_across_abnormal_edges): Tolerate
the absence of a corresponding edge from the exit block.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129151
138bc75d-0d04-0410-961f-
82ee72b054a4
2007-10-09 Alexandre Oliva <aoliva@redhat.com>
+ PR tree-optimization/33572
+ * tree-inline.c (update_ssa_across_abnormal_edges): Tolerate
+ the absence of a corresponding edge from the exit block.
+
+2007-10-09 Alexandre Oliva <aoliva@redhat.com>
+
PR middle-end/22156
* tree-sra.c (instantiate_element): Use BYTES_BIG_ENDIAN for
bit-field layout.
}
re = find_edge (ret_bb, e->dest);
- gcc_assert (re);
+ if (!re)
+ continue;
gcc_assert ((re->flags & (EDGE_EH | EDGE_ABNORMAL))
== (e->flags & (EDGE_EH | EDGE_ABNORMAL)));