tree-dump.c (dequeue_and_dump): CONSTRUCTOR nodes contain only one operand.

* tree-dump.c (dequeue_and_dump): CONSTRUCTOR nodes contain only
	one operand.

From-SVN: r66630
This commit is contained in:
Diego Novillo 2003-05-09 13:27:19 +00:00 committed by Diego Novillo
parent 3c4b64384b
commit ec0f4995d6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-05-09 Diego Novillo <dnovillo@redhat.com>
* tree-dump.c (dequeue_and_dump): CONSTRUCTOR nodes contain only
one operand.
2003-05-09 Gabriel Dos Reis <gdr@integrable-solutions.net>
* toplev.h (warning_with_file_and_line): Don't declare.

View File

@ -569,7 +569,7 @@ dequeue_and_dump (di)
break;
case CONSTRUCTOR:
dump_child ("elts", TREE_OPERAND (t, 1));
dump_child ("elts", TREE_OPERAND (t, 0));
break;
case BIND_EXPR: