aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2011-01-17 08:50:09 -0800
committerRichard Henderson <rth@gcc.gnu.org>2011-01-17 08:50:09 -0800
commitd7fde127b8415be9a1526620abe3e1272c0222ad (patch)
treec0d1473634d7ffa80f65c5dcc766f79413951dca /gcc
parentfe1d7b0e4da3a58ce55110fc07c2a55e78b77f5c (diff)
downloadgcc-d7fde127b8415be9a1526620abe3e1272c0222ad.zip
gcc-d7fde127b8415be9a1526620abe3e1272c0222ad.tar.gz
gcc-d7fde127b8415be9a1526620abe3e1272c0222ad.tar.bz2
* except.c (dump_eh_tree): Fix stray ; after for statement.
From-SVN: r168910
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/except.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b5c8fa1..e60aec4 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/except.c b/gcc/except.c
index 2a25a3b..3e2bbfb 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)