This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Questions on tree-inline.c
- From: kenner at vlsi1 dot ultra dot nyu dot edu (Richard Kenner)
- To: jason at redhat dot com
- Cc: gcc at gcc dot gnu dot org
- Date: Fri, 13 Jun 03 21:10:16 EDT
- Subject: Re: Questions on tree-inline.c
The way to clean it up is to have a language-independent
functions-as-trees representation.
Not necessarily. Tree nodes can (mostly) be manipulated by using the number
of operands and TREE_CODE_CLASS, with a few language-specific hooks. Indeed,
that's what I thought those hooks were there for in the first place!