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

From-SVN: r168910
This commit is contained in:
Richard Henderson 2011-01-17 08:50:09 -08:00 committed by Richard Henderson
parent fe1d7b0e4d
commit d7fde127b8
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -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)