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 <[email protected]>
+
+ * gdbinit.in (skip "tree.h"): Replaced with skip file tree.h.
+