From patchwork Sat Aug 25 05:30:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Iyer, Balaji V" X-Patchwork-Id: 179950 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id BC80C2C0116 for ; Sat, 25 Aug 2012 15:30:43 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1346477445; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:From:To:CC:Subject:Date:Message-ID:Content-Type: Content-Transfer-Encoding:MIME-Version:Mailing-List:Precedence: List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=t6tOKs/OQSSb6Ca6YlI2q9WuC6Q=; b=ip8prLvORYO6QYc 1IkP2VtSI6qu0YBbV/9UWMEFB/TI7qw6ploclZ7iHEXc6B9rEpDYaR+1LpqK5dzA o4Ks6Bc5PbjzbcoZEdhG4atiRSItUKiuplOLrPkefwL2xFtgK9m9hhZM2VKhD2Zs QB0B1yQ1wYW35Mwssb2m7fZsdvGs= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:X-ExtLoop1:Received:Received:From:To:CC:Subject:Date:Message-ID:Content-Type:Content-Transfer-Encoding:MIME-Version:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=SlqthZXEHW+Yd47WoqL/6/u76Ip3dT4AB41srmPASsBaQJikuRy/pCN8sxHH2k gxoKwCQchNgLrT1lTwZz5tojBMltUiAPGoTn1xmXmcOS8uOG7ADe8wJJTDzgWr9p g5VxGDRmJz/74wsdm2tDz7LV6PBUWobHXlfOh0BqpG06g=; Received: (qmail 3807 invoked by alias); 25 Aug 2012 05:30:38 -0000 Received: (qmail 3798 invoked by uid 22791); 25 Aug 2012 05:30:34 -0000 X-SWARE-Spam-Status: No, hits=-6.6 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_HI, RCVD_IN_HOSTKARMA_W, RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mga02.intel.com (HELO mga02.intel.com) (134.134.136.20) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 25 Aug 2012 05:30:16 +0000 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 24 Aug 2012 22:30:15 -0700 X-ExtLoop1: 1 Received: from fmsmsx103.amr.corp.intel.com ([10.19.9.34]) by orsmga001.jf.intel.com with ESMTP; 24 Aug 2012 22:30:15 -0700 Received: from fmsmsx102.amr.corp.intel.com ([169.254.2.223]) by FMSMSX103.amr.corp.intel.com ([169.254.3.146]) with mapi id 14.01.0355.002; Fri, 24 Aug 2012 22:30:15 -0700 From: "Iyer, Balaji V" To: "gcc-patches@gcc.gnu.org" CC: Diego Novillo Subject: [PATCH] skipping tree.h in gdbinit.in Date: Sat, 25 Aug 2012 05:30:14 +0000 Message-ID: MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Hello Everyone, When I was GDBing cc1, the skip tree.h line was giving me error. When I replaced it with "skip file tree.h" it seem to work fine. Here is a patch to fix it. Thanks, Balaji V. Iyer. Index: gcc/gdbinit.in =================================================================== --- gcc/gdbinit.in (revision 190623) +++ gcc/gdbinit.in (working copy) @@ -208,4 +208,4 @@ # These are used in accessor macros. # Note that this is added at the end because older gdb versions # do not understand the 'skip' command. -skip "tree.h" +skip file tree.h Index: gcc/ChangeLog =================================================================== --- gcc/ChangeLog (revision 190623) +++ gcc/ChangeLog (working copy) @@ -1,3 +1,7 @@ +2012-08-25 Balaji V. Iyer + + * gdbinit.in (skip "tree.h"): Replaced with skip file tree.h. +