diff options
author | Richard Henderson <rth@redhat.com> | 2001-08-21 01:54:33 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-08-21 01:54:33 -0700 |
commit | 3aed19811b745b62c8d04aaa5dc6228524cc883b (patch) | |
tree | 8f286096d04e4157bc4e82969091c6aaaa8cc563 /gcc | |
parent | 487b97e0564e46f876d040a2246290ba47aaf579 (diff) | |
download | gcc-3aed19811b745b62c8d04aaa5dc6228524cc883b.zip gcc-3aed19811b745b62c8d04aaa5dc6228524cc883b.tar.gz gcc-3aed19811b745b62c8d04aaa5dc6228524cc883b.tar.bz2 |
* gdbinit.in: Move break on exit after break on fancy_abort.
From-SVN: r45074
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/gdbinit.in | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 175f627..528fc20 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2001-08-21 Richard Henderson <rth@redhat.com> + * gdbinit.in: Move break on exit after break on fancy_abort. + * config/ia64/ia64.c (ia64_return_in_memory): True for variable sized types. diff --git a/gcc/gdbinit.in b/gcc/gdbinit.in index ccc3ad8..5fae918 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 |