From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5639 invoked by alias); 16 Jul 2002 19:18:09 -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 5631 invoked from network); 16 Jul 2002 19:18:07 -0000 Received: from unknown (HELO localhost.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 16 Jul 2002 19:18:07 -0000 Received: from ges.redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 1A3A63C41; Tue, 16 Jul 2002 15:18:06 -0400 (EDT) Message-ID: <3D34716D.3080300@ges.redhat.com> Date: Tue, 16 Jul 2002 13:41:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020708 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Elena Zannoni Cc: Daniel Jacobowitz , gdb-patches@sources.redhat.com Subject: Re: [patch/rfc] Obsolete i[3456]86-*-os9k target References: <3D31B0BB.4030809@ges.redhat.com> <20020714173533.GA30061@nevyn.them.org> <15666.7366.759366.807608@localhost.redhat.com> <3D343BAE.1080300@ges.redhat.com> <15668.28233.984220.611039@localhost.redhat.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-07/txt/msg00351.txt.bz2 > > I started changing: > > > > if (os8k_stabs) > > > > else > > > > > > into: > > > > /* OBSOLETE if (os8k_stabs) */ > > /* OBSOLETE */ > > /* OBSOLETE else */ > > > > > > but gave up. Some of those if() clauses got pretty weired. Not sure > > what the reader maintainers want to do. > > I'll try to come up a patch that to 'if 0' those bits. I think that > the indentation and extra curly braces can be fixed later, once we > pull the code out for good. We definitely need to deactivate these parts, > otherwise os9k_stabs would be undefined. Hmm, another way of disabling it it might be: if (os9k_stabs) /* OBSOLETE */ ... The reason behind adding the word OBSOLETE is that it makes searching easier - just grep out any line with OBSOLETE in it. Andrew