aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMingjie Xing <mingjie.xing@gmail.com>2011-06-09 02:26:19 +0000
committerMingjie Xing <xmj@gcc.gnu.org>2011-06-09 02:26:19 +0000
commitdf17530a852fae6aab5ce41d806a78808013fc1f (patch)
treec2828d77d9e837eb4de622c4a8b7bc7500b05dbc /gcc
parentd2051792ce3004780c6f5aee08aa4538f9f72fbb (diff)
downloadgcc-df17530a852fae6aab5ce41d806a78808013fc1f.zip
gcc-df17530a852fae6aab5ce41d806a78808013fc1f.tar.gz
gcc-df17530a852fae6aab5ce41d806a78808013fc1f.tar.bz2
Fix the printable name typo
From-SVN: r174833
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/treestruct.def2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5392ecc..821771a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2011-06-09 Mingjie Xing <mingjie.xing@gmail.com>
+
+ * treestruct.def (TS_TYPE_DECL): Fix the printable name typo.
+
2011-06-08 Kaz Kojima <kkojima@gcc.gnu.org>
PR target/49305
diff --git a/gcc/treestruct.def b/gcc/treestruct.def
index 1e5f32d..769cbfa 100644
--- a/gcc/treestruct.def
+++ b/gcc/treestruct.def
@@ -51,7 +51,7 @@ DEFTREESTRUCT(TS_PARM_DECL, "parm decl")
DEFTREESTRUCT(TS_LABEL_DECL, "label decl")
DEFTREESTRUCT(TS_RESULT_DECL, "result decl")
DEFTREESTRUCT(TS_CONST_DECL, "const decl")
-DEFTREESTRUCT(TS_TYPE_DECL, "label decl")
+DEFTREESTRUCT(TS_TYPE_DECL, "type decl")
DEFTREESTRUCT(TS_FUNCTION_DECL, "function decl")
DEFTREESTRUCT(TS_TRANSLATION_UNIT_DECL, "translation-unit decl")
DEFTREESTRUCT(TS_TYPE_COMMON, "type common")