This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Intermediate representation
- From: Dave Korn <dave dot korn dot cygwin at googlemail dot com>
- To: Nicolas COLLIN <nicolas dot collin at fr dot thalesgroup dot com>
- Cc: gcc at gcc dot gnu dot org
- Date: Tue, 26 May 2009 16:52:33 +0100
- Subject: Re: Intermediate representation
- References: <4A1BF2B5.9010502@fr.thalesgroup.com>
Nicolas COLLIN wrote:
> Hello again,
>
> I 'm still working on egcs 1.1 and the function cp_namespace_decls is
> not implemented in.
Well, the definition is very simple
tree
cp_namespace_decls (tree ns)
{
return NAMESPACE_LEVEL (ns)->names;
}
and NAMESPACE_LEVEL exists in egcs-1.1, so why not try back-porting it?
cheers,
DaveK