aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-01-20 23:42:38 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-01-20 23:42:38 +0000
commitcde682360d42963b42eb04ec8e93d7ae6599a69a (patch)
tree048727bfd04c02e42511391f38a72281ea5bb90c /gcc
parent9d953276e175309cd6fa1ee51b4cd32d7d1c1e15 (diff)
downloadgcc-cde682360d42963b42eb04ec8e93d7ae6599a69a.zip
gcc-cde682360d42963b42eb04ec8e93d7ae6599a69a.tar.gz
gcc-cde682360d42963b42eb04ec8e93d7ae6599a69a.tar.bz2
* tree-cfg.c (tree_verify_flow_info): Fix a typo.
From-SVN: r93995
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/tree-cfg.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index be4bfdd..19eda0f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -3,6 +3,8 @@
* tree-cfg.c (tree_verify_flow_info): Check that a nonlocal
label is first in a sequence of labels.
+ * tree-cfg.c (tree_verify_flow_info): Fix a typo.
+
2005-01-20 Janis Johnson <janis187@us.ibm.com>
Giovanni Bajo <giovannibajo@gcc.gnu.org>
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c
index e7abf97..30d276d 100644
--- a/gcc/tree-cfg.c
+++ b/gcc/tree-cfg.c
@@ -3610,7 +3610,7 @@ tree_verify_flow_info (void)
if (prev_stmt && DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
{
error ("Nonlocal label %s is not first "
- "in a sequence of labels in bb %d"",
+ "in a sequence of labels in bb %d",
IDENTIFIER_POINTER (DECL_NAME (LABEL_EXPR_LABEL (stmt))),
bb->index);
err = 1;