When we are altering the ctrl state of a stmt due to adding abnormal
edges from it we also have to make sure to cleanup its noreturn state.
PR tree-optimization/124130
* tree-inline.cc (copy_edges_for_bb): Fixup noreturn calls
with abnormal edge source.
* g++.dg/torture/pr124130.C: New testcase.
--- /dev/null
+// { dg-do compile }
+
+void __sigsetjmp_cancel() __attribute__((__returns_twice__));
+struct basic_ostream {
+ basic_ostream &operator<<(basic_ostream &__pf(basic_ostream &)) {
+ return __pf(*this);
+ }
+} cerr;
+extern "C" void _exit(int);
+enum { Exit_Internal_Error };
+basic_ostream &report_error(basic_ostream &) { _exit(Exit_Internal_Error); }
+void thread_pool_thread_main() {
+ __sigsetjmp_cancel();
+ cerr << report_error;
+}
make_single_succ_edge (copy_stmt_bb, abnormal_goto_dest,
EDGE_ABNORMAL);
gimple_call_set_ctrl_altering (copy_stmt, true);
+ if (is_a <gcall *> (copy_stmt)
+ && (gimple_call_flags (copy_stmt) & ECF_NORETURN))
+ fixup_noreturn_call (copy_stmt);
}
}