From patchwork Sat Aug 25 05:30:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: skipping tree.h in gdbinit.in From: "Iyer, Balaji V" X-Patchwork-Id: 179950 Message-Id: To: "gcc-patches@gcc.gnu.org" Cc: Diego Novillo Date: Sat, 25 Aug 2012 05:30:14 +0000 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. +