aboutsummaryrefslogtreecommitdiff
path: root/gcc/except.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2011-01-17 16:50:09 +0000
committerRichard Henderson <rth@redhat.com>2011-01-17 16:50:09 +0000
commit7d8da7dd8392f5c6dd8955dcb37e0a98f2864a50 (patch)
treec0d1473634d7ffa80f65c5dcc766f79413951dca /gcc/except.c
parent4d642458c95e1caffde281b1ff13970754bf80b2 (diff)
* except.c (dump_eh_tree): Fix stray ; after for statement.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@168910 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.c')
-rw-r--r--gcc/except.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/except.c b/gcc/except.c
index 2a25a3bd5b3..3e2bbfb1f75 100644
--- a/gcc/except.c
+++ b/gcc/except.c
@@ -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)