Commit 7e82801f by Mike Stump

stmt.c (expand_decl_cleanup): Avoid core dumping when exceptions aren't on.

	* stmt.c (expand_decl_cleanup): Avoid core dumping when exceptions
	aren't on.

From-SVN: r14226
parent 41e16835
...@@ -3957,6 +3957,7 @@ expand_decl_cleanup (decl, cleanup) ...@@ -3957,6 +3957,7 @@ expand_decl_cleanup (decl, cleanup)
{ {
seq = get_insns (); seq = get_insns ();
end_sequence (); end_sequence ();
if (seq)
thisblock->data.block.last_unconditional_cleanup thisblock->data.block.last_unconditional_cleanup
= emit_insns_after (seq, = emit_insns_after (seq,
thisblock->data.block.last_unconditional_cleanup); thisblock->data.block.last_unconditional_cleanup);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment