tree-dump.c (dequeue_and_dump): Use CONSTRUCTOR_ELTS...
* tree-dump.c (dequeue_and_dump): Use CONSTRUCTOR_ELTS, instead of TREE_OPERAND to access the operand of a CONSTRUCTOR node. From-SVN: r66635
This commit is contained in:
parent
88e98cfeb7
commit
5675294bcb
@ -1,3 +1,9 @@
|
||||
2003-05-09 Diego Novillo <dnovillo@redhat.com>
|
||||
|
||||
* tree-dump.c (dequeue_and_dump): Use CONSTRUCTOR_ELTS,
|
||||
instead of TREE_OPERAND to access the operand of a
|
||||
CONSTRUCTOR node.
|
||||
|
||||
2003-05-09 Diego Novillo <dnovillo@redhat.com>
|
||||
|
||||
* tree-dump.c (dequeue_and_dump): CONSTRUCTOR nodes contain only
|
||||
|
@ -569,7 +569,7 @@ dequeue_and_dump (di)
|
||||
break;
|
||||
|
||||
case CONSTRUCTOR:
|
||||
dump_child ("elts", TREE_OPERAND (t, 0));
|
||||
dump_child ("elts", CONSTRUCTOR_ELTS (t));
|
||||
break;
|
||||
|
||||
case BIND_EXPR:
|
||||
|
Loading…
Reference in New Issue
Block a user