This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] skipping tree.h in gdbinit.in


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]