Commit ec0f4995 by Diego Novillo Committed by Diego Novillo

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
parent 3c4b6438
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> 2003-05-09 Gabriel Dos Reis <gdr@integrable-solutions.net>
* toplev.h (warning_with_file_and_line): Don't declare. * toplev.h (warning_with_file_and_line): Don't declare.
......
...@@ -569,7 +569,7 @@ dequeue_and_dump (di) ...@@ -569,7 +569,7 @@ dequeue_and_dump (di)
break; break;
case CONSTRUCTOR: case CONSTRUCTOR:
dump_child ("elts", TREE_OPERAND (t, 1)); dump_child ("elts", TREE_OPERAND (t, 0));
break; break;
case BIND_EXPR: case BIND_EXPR:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment