Use the stock (3.1) version.
This commit is contained in:
parent
b2eb577abd
commit
e9d2a91a8b
@ -330,6 +330,8 @@ print_node (file, prefix, node, indent)
|
||||
fputs (" common", file);
|
||||
if (DECL_EXTERNAL (node))
|
||||
fputs (" external", file);
|
||||
if (DECL_WEAK (node))
|
||||
fputs (" weak", file);
|
||||
if (DECL_REGISTER (node) && TREE_CODE (node) != FIELD_DECL
|
||||
&& TREE_CODE (node) != FUNCTION_DECL
|
||||
&& TREE_CODE (node) != LABEL_DECL)
|
||||
@ -709,6 +711,22 @@ print_node (file, prefix, node, indent)
|
||||
}
|
||||
break;
|
||||
|
||||
case VECTOR_CST:
|
||||
{
|
||||
tree vals = TREE_VECTOR_CST_ELTS (node);
|
||||
char buf[10];
|
||||
tree link;
|
||||
int i;
|
||||
|
||||
i = 0;
|
||||
for (link = vals; link; link = TREE_CHAIN (link), ++i)
|
||||
{
|
||||
sprintf (buf, "elt%d: ", i);
|
||||
print_node (file, buf, TREE_VALUE (link), indent + 4);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case COMPLEX_CST:
|
||||
print_node (file, "real", TREE_REALPART (node), indent + 4);
|
||||
print_node (file, "imag", TREE_IMAGPART (node), indent + 4);
|
||||
|
Loading…
Reference in New Issue
Block a user