diff options
author | Andreas Schwab <schwab@issan.cs.uni-dortmund.de> | 1999-03-16 20:58:45 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-03-16 13:58:45 -0700 |
commit | b14a4f5a2860843afe94587a36f01ba8d192e490 (patch) | |
tree | f8a894da906084e443e7c3186c61a083ba60dfb8 /gcc | |
parent | f921acee1dc1152b82af5ff8224e6e49e177fcb1 (diff) | |
download | gcc-b14a4f5a2860843afe94587a36f01ba8d192e490.zip gcc-b14a4f5a2860843afe94587a36f01ba8d192e490.tar.gz gcc-b14a4f5a2860843afe94587a36f01ba8d192e490.tar.bz2 |
gdbinit: Move command to put breakpoint at abort to end of file so that gdb does not...
* .gdbinit: Move command to put breakpoint at abort to end of file
so that gdb does not bail out early.
From-SVN: r25810
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/.gdbinit | 10 | ||||
-rw-r--r-- | gcc/ChangeLog | 5 |
2 files changed, 11 insertions, 4 deletions
diff --git a/gcc/.gdbinit b/gcc/.gdbinit index fe4592b..ccc3ad8 100644 --- a/gcc/.gdbinit +++ b/gcc/.gdbinit @@ -86,10 +86,6 @@ In cc1plus, print the current binding stack, frame by frame, up to and including the global binding level. end -# Don't let abort actually run, as it will make -# stdio stop working and therefore the `pr' command below as well. -b abort - # Put breakpoints at exit and fancy_abort in case abort is mapped # to either fprintf/exit or fancy_abort. b exit @@ -98,3 +94,9 @@ b fancy_abort # Make gdb complain about symbol reading errors. This is so that gcc # developers can see and fix bugs in gcc debug output. set complaints 20 + +# Don't let abort actually run, as it will make +# stdio stop working and therefore the `pr' command above as well. +# Put this last because gcc does not reference it any more unless +# USE_SYSTEM_ABORT is defined, so gdb may complain and bail out. +b abort diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 316c938..8f70e33 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +1999-03-16 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> + + * .gdbinit: Move command to put breakpoint at abort to end of file + so that gdb does not bail out early. + Tue Mar 16 15:30:19 1999 Nick Clifton <nickc@cygnus.com> * rtl.h: Rename prototype for free_bb_memory to free_bb_mem. |