This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: [tree-ssa][ GC, Virtual operands, and GCing between passes


On Thu, 2003-12-11 at 09:27, Andrew MacLeod wrote:
> On Thu, 2003-12-11 at 09:14, S. Bosscher wrote:
> > > The problem is that gengtype will not allow me to have vevotrs of type

> 
> 
> So that doesn't work for me either.
> 
> I am lothe to use the other patch until it is accepted by someone. OH, I
> see Jim OK'd it. Has it been checked into mainline or the tree-ssa
> branch?
> 

Even with the patch I still get:
./gengtype
warning: structure `java_line' used but not defined
warning: structure `jdeplist_s' used but not defined
warning: structure `java_lexer' used but not defined
warning: structure `ZipDirectory' used but not defined
warning: structure `aterm_list_a' used but not defined
warning: structure `aterm_' used but not defined
/src/tree-ssa/2003-12-10-new/gcc/gcc/tree-ssa-operands.h:30: field
`(*x).def_ops.defs' is pointer to unimplemented type
/src/tree-ssa/2003-12-10-new/gcc/gcc/tree-ssa-operands.h:38: field
`(*x).use_ops.uses' is pointer to unimplemented type

typedef struct def_optype_d GTY(())
{
  unsigned num_defs;
  void * GTY(()) defs;
} def_optype_t;

or
typedef struct def_optype_d GTY(())
{
  unsigned num_defs;
  void * defs;
} def_optype_t;
or
ypedef struct def_optype_d GTY(())
{
  unsigned num_defs;
  void **GTY(()) defs;
} def_optype_t;

etc.




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]