diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-21 08:54:33 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-21 08:54:33 +0000 |
commit | d62e1a3b483caa3e5a09bc53467a96510da18e67 (patch) | |
tree | 8f286096d04e4157bc4e82969091c6aaaa8cc563 /gcc/gdbinit.in | |
parent | 55819289f8a743d72c1c8191825e53723b9b9954 (diff) | |
download | gcc-d62e1a3b483caa3e5a09bc53467a96510da18e67.tar.gz |
* gdbinit.in: Move break on exit after break on fancy_abort.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45074 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gdbinit.in')
-rw-r--r-- | gcc/gdbinit.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gdbinit.in b/gcc/gdbinit.in index ccc3ad8787f..5fae9180461 100644 --- a/gcc/gdbinit.in +++ b/gcc/gdbinit.in @@ -88,7 +88,6 @@ end # Put breakpoints at exit and fancy_abort in case abort is mapped # to either fprintf/exit or fancy_abort. -b exit b fancy_abort # Make gdb complain about symbol reading errors. This is so that gcc @@ -99,4 +98,5 @@ set complaints 20 # 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 exit b abort |