From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23920 invoked by alias); 17 Dec 2002 01:43:27 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 23871 invoked from network); 17 Dec 2002 01:43:25 -0000 Received: from unknown (HELO egil.codesourcery.com) (66.92.14.122) by sources.redhat.com with SMTP; 17 Dec 2002 01:43:25 -0000 Received: from zack by egil.codesourcery.com with local (Exim 3.36 #1 (Debian)) id 18O6lY-0001Wa-00; Mon, 16 Dec 2002 17:43:24 -0800 To: Geoff Keating Cc: gcc@gcc.gnu.org Subject: Re: basic-improvements merge status References: <200212170133.gBH1X0313425@desire.geoffk.org> From: Zack Weinberg Date: Mon, 16 Dec 2002 18:28:00 -0000 In-Reply-To: <200212170133.gBH1X0313425@desire.geoffk.org> (Geoff Keating's message of "Mon, 16 Dec 2002 17:33:00 -0800") Message-ID: <87y96p1kub.fsf@egil.codesourcery.com> User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i386-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-12/txt/msg00986.txt.bz2 Geoff Keating 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