diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/gdbinit.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0069cd37e34..679c0be91eb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-04-28 Mike Stump <mrs@apple.com> + + * gdbinit.in: Update to reflect new identifier structure. + 2003-04-28 Zack Weinberg <zack@codesourcery.com> * tree.h (TREE_CST_RTL, CST_OR_CONSTRUCTOR_CHECK): Delete. diff --git a/gcc/gdbinit.in b/gcc/gdbinit.in index 17067df1b46..cee1131b6aa 100644 --- a/gcc/gdbinit.in +++ b/gcc/gdbinit.in @@ -50,7 +50,7 @@ Print the tree-code of the tree node that is $. end define pdn -output $.decl.name->identifier.pointer +output $.decl.name->identifier.id.str echo \n end @@ -59,7 +59,7 @@ Print the name of the decl-node that is $. end define ptn -output $.type.name->decl.name->identifier.pointer +output $.type.name->decl.name->identifier.id.str echo \n end |