From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13678 invoked by alias); 20 Jun 2002 21:11:57 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 13625 invoked from network); 20 Jun 2002 21:11:53 -0000 Received: from unknown (HELO localhost.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 20 Jun 2002 21:11:53 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id E3A143D2C; Thu, 20 Jun 2002 17:11:51 -0400 (EDT) Message-ID: <3D124517.7020704@cygnus.com> Date: Thu, 20 Jun 2002 14:11:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020613 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jim Blandy Cc: Dan Nicolaescu , binutils@sources.redhat.com, Jason Merrill , gdb-patches@sources.redhat.com Subject: Re: [very old] Re: dwarf2 cleanup References: <200102151617.aa17403@gremlin-relay.ics.uci.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-06/txt/msg00407.txt.bz2 > + #define DEFDWARF2_CALL_FRAME_INFO(SYM, VAL) SYM = VAL, >> enum dwarf_call_frame_info >> { >> ! #include "dwarf2.def" >> ! LAST_DWARF_CALL_FAME_INFO >> }; >> + #undef DEFDWARF2_CALL_FRAME_INFO >> BTW, these GDB parts should at least be written with the define/undefine hard up against that #include to make it very clear that something pretty garish is going on inside that #include: #define DEFDWARF2_CALL_FRAME_INFO(SYM, VAL) SYM = VAL, #include "dwarf2.def" #undef DEFDWARF2_CALL_FRAME_INFO Andrew