dump-parse-tree.c (show_typespec): Also show character kind.

2010-12-27  Thomas Koenig  <tkoenig@gcc.gnu.org>

	* dump-parse-tree.c (show_typespec):  Also show character kind.

From-SVN: r168276
This commit is contained in:
Thomas Koenig 2010-12-27 15:33:39 +00:00
parent ebb526f950
commit e321054350
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2010-12-27 Thomas Koenig <tkoenig@gcc.gnu.org>
* dump-parse-tree.c (show_typespec): Also show character kind.
2010-12-24 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/31821

View File

@ -105,6 +105,7 @@ show_typespec (gfc_typespec *ts)
case BT_CHARACTER:
show_expr (ts->u.cl->length);
fprintf(dumpfile, " %d", ts->kind);
break;
default: