diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-01-17 16:50:09 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-01-17 16:50:09 +0000 |
commit | 6b8f34b9f52b110fecac3420405d43851e04d5f9 (patch) | |
tree | c0d1473634d7ffa80f65c5dcc766f79413951dca /gcc/except.c | |
parent | cb5ce9b425eab4dc76a32b68b803434546ae14a2 (diff) | |
download | gcc-6b8f34b9f52b110fecac3420405d43851e04d5f9.tar.gz |
* 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
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 2 |
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) |