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,9 +3957,10 @@ expand_decl_cleanup (decl, cleanup) ...@@ -3957,9 +3957,10 @@ expand_decl_cleanup (decl, cleanup)
{ {
seq = get_insns (); seq = get_insns ();
end_sequence (); end_sequence ();
thisblock->data.block.last_unconditional_cleanup if (seq)
= emit_insns_after (seq, thisblock->data.block.last_unconditional_cleanup
thisblock->data.block.last_unconditional_cleanup); = emit_insns_after (seq,
thisblock->data.block.last_unconditional_cleanup);
} }
else else
{ {
......
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