diff mbox

skipping tree.h in gdbinit.in

Message ID BF230D13CA30DD48930C31D40993300016C5FD3D@FMSMSX102.amr.corp.intel.com
State New
Headers show

Commit Message

Iyer, Balaji V Aug. 25, 2012, 5:30 a.m. UTC
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.
diff mbox

Patch

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  <balaji.v.iyer@intel.com>
+
+       * gdbinit.in (skip "tree.h"): Replaced with skip file tree.h.
+