Commit 6b8f34b9 authored by rth's avatar rth
Browse files

* except.c (dump_eh_tree): Fix stray ; after for statement.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168910 138bc75d-0d04-0410-961f-82ee72b054a4
parent cb5ce9b4
2011-01-17 Richard Henderson <rth@redhat.com>
* except.c (dump_eh_tree): Fix stray ; after for statement.
2011-01-17 Richard Guenther <rguenther@suse.de>
PR tree-optimization/47313
......
......@@ -3194,7 +3194,7 @@ dump_eh_tree (FILE * out, struct function *fun)
}
else
{
for (lp = i->landing_pads; lp ; lp = lp->next_lp);
for (lp = i->landing_pads; lp ; lp = lp->next_lp)
{
fprintf (out, "{%i,", lp->index);
if (lp->landing_pad)
......
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