Commit d7fde127 by Richard Henderson Committed by Richard Henderson

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

From-SVN: r168910
parent fe1d7b0e
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