This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: basic-improvements merge status
- From: Zack Weinberg <zack at codesourcery dot com>
- To: Geoff Keating <geoffk at geoffk dot org>
- Cc: gcc at gcc dot gnu dot org
- Date: Mon, 16 Dec 2002 17:43:24 -0800
- Subject: Re: basic-improvements merge status
- References: <B1F15313-1157-11D7-96C8-00039375D8A0@apple.com><200212170133.gBH1X0313425@desire.geoffk.org>
Geoff Keating <geoffk@geoffk.org> writes:
> That line has a 'GTY(())' on it, which is causing the parse error:
> somehow GTY is not being defined.
That should be impossible; coretypes.h unconditionally defines GTY,
and cse.c includes coretypes.h before rtl.h:
#include "config.h"
/* stdio.h must precede rtl.h for FFS. */
#include "system.h"
#include "coretypes.h"
#include "tm.h"
#include "rtl.h"
Have you got a sticky tag or something?
zw