From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1238 invoked by alias); 4 Jan 2004 21:09:46 -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 1224 invoked from network); 4 Jan 2004 21:09:45 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (213.93.115.144) by sources.redhat.com with SMTP; 4 Jan 2004 21:09:45 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i04L9iUx000452; Sun, 4 Jan 2004 22:09:44 +0100 (CET) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i04L9iV7026417; Sun, 4 Jan 2004 22:09:44 +0100 (CET) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6/Submit) id i04L9hMI026414; Sun, 4 Jan 2004 22:09:43 +0100 (CET) Date: Sun, 04 Jan 2004 21:09:00 -0000 Message-Id: <200401042109.i04L9hMI026414@elgar.kettenis.dyndns.org> From: Mark Kettenis To: gdb-patches@sources.redhat.com, binutils@sources.redhat.com Subject: [PATCH/RFA] Add N_PATCH stab X-SW-Source: 2004-01/txt/msg00076.txt.bz2 The Solaris compiler emits these, which triggers a complaint in GDB. I'd like to make GDB ignore these beasts. Is this a BFD file or a GDB file? Mark Index: include/aout/ChangeLog from Mark Kettenis * stab.def: Add N_PATCH. Index: include/aout/stab.def =================================================================== RCS file: /cvs/src/src/include/aout/stab.def,v retrieving revision 1.2 diff -u -p -r1.2 stab.def --- include/aout/stab.def 14 Mar 2001 02:27:43 -0000 1.2 +++ include/aout/stab.def 4 Jan 2004 21:06:32 -0000 @@ -181,6 +181,9 @@ __define_stab (N_EXCL, 0xc2, "EXCL") /* Modula-2 scope information. Can someone say what info it contains? */ __define_stab (N_SCOPE, 0xc4, "SCOPE") +/* Solaris2: Patch Run Time Checker. */ +__define_stab (N_PATCH, 0xd0, "PATCH") + /* End of a lexical block. Desc matches the N_LBRAC's desc. The value is the address of the end of the text for the block. On Solaris2, the value is relative to the start of the current function. */ @@ -256,7 +259,7 @@ __define_stab (N_LENG, 0xfe, "LENG") | B8 | BA | BC | BE | | C0 LBRAC | C2 EXCL | C4 SCOPE | C6 | | C8 | CA | CC | CE | - | D0 | D2 | D4 | D6 | + | D0 PATCH | D2 | D4 | D6 | | D8 | DA | DC | DE | | E0 RBRAC | E2 BCOMM | E4 ECOMM | E6 | | E8 ECOML | EA WITH | EC | EE |