This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Error "pointer to unimplemented type"
- From: prashant rawat <prashantr dot iitb at gmail dot com>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Tue, 13 Oct 2009 12:59:28 +0530
- Subject: Error "pointer to unimplemented type"
Hello,
While trying to add a field 'tree * var_list' to struct cgraph_node
(defined in cgraph.h), I got an error
../../gcc-4.3.1/gcc/cgraph.h:128: field `(*x).var_list' is pointer to
unimplemented type
../../gcc-4.3.1/gcc/cgraph.h:128: field `(*x).var_list' is pointer to
unimplemented type
../../gcc-4.3.1/gcc/cgraph.h:128: field `(*x).var_list' is pointer to
unimplemented type
make[3]: *** [s-gtype] Error 1
This happened all the times I tried adding a pointer-to-pointer type
data structure in cgraph_node.
The error is generated in line 2020 of file gengtype.c.
Did anyone else notice the same problem? Is it a potential bug?
Thanks!