dump_parse_tree.c (show_components): Show ALLOCATABLE.

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

	* dump_parse_tree.c (show_components):  Show
	ALLOCATABLE.

From-SVN: r168324
This commit is contained in:
Thomas Koenig 2010-12-29 21:33:03 +00:00
parent fbd30c381c
commit d6c63324b5
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-12-29 Thomas Koenig <tkoenig@gcc.gnu.org>
* dump_parse_tree.c (show_components): Show
ALLOCATABLE.
2010-12-29 Janus Weil <janus@gcc.gnu.org>
PR fortran/46838

View File

@ -694,6 +694,8 @@ show_components (gfc_symbol *sym)
{
fprintf (dumpfile, "(%s ", c->name);
show_typespec (&c->ts);
if (c->attr.allocatable)
fputs (" ALLOCATABLE", dumpfile);
if (c->attr.pointer)
fputs (" POINTER", dumpfile);
if (c->attr.proc_pointer)