From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19003 invoked by alias); 22 Jun 2002 01:44:28 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 18996 invoked from network); 22 Jun 2002 01:44:26 -0000 Received: from unknown (HELO zwingli.cygnus.com) (208.245.165.35) by sources.redhat.com with SMTP; 22 Jun 2002 01:44:26 -0000 Received: by zwingli.cygnus.com (Postfix, from userid 442) id 179E65EA11; Fri, 21 Jun 2002 20:44:24 -0500 (EST) To: gdb@sources.redhat.com Subject: Live Range Splitting goodbye? From: Jim Blandy Date: Fri, 21 Jun 2002 18:44:00 -0000 Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-06/txt/msg00189.txt.bz2 Would anyone mind if I deleted the support for live range splitting? That would remove the following fields from struct symbol, get rid of a weird call to read_pc in symtab.c (!!), and a bunch of other stuff. I believe the GCC code which would emit the sorts of STABS that turn into these structures has never been contributed to the public sources anyway. struct symbol { ... /* Link to a list of aliases for this symbol. Only a "primary/main symbol may have aliases. */ struct alias_list *aliases; /* List of ranges where this symbol is active. This is only used by alias symbols at the current time. */ struct range_list *ranges; };