This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Why does tree-pretty-print try to print BINFO_TYPE of TREE__VEC
- From: Daniel Berlin <dberlin at dberlin dot org>
- To: gcc at gcc dot gnu dot org
- Date: Wed, 6 Oct 2004 11:45:41 -0400
- Subject: Why does tree-pretty-print try to print BINFO_TYPE of TREE__VEC
in dump_generic_node, we have
case TREE_VEC:
dump_generic_node (buffer, BINFO_TYPE (node), spc, flags, false);
break;
This seems very wrong, and in fact, fails for all tree-vecs i've tried
to pretty print.
I assume this really should be walking the vector?
--Dan