diff options
author | Ben Elliston <bje@au.ibm.com> | 2004-07-22 01:04:13 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2004-07-22 11:04:13 +1000 |
commit | c9092111fd29bb8e26c7dedb96a854d45c442977 (patch) | |
tree | 43fe984fdd16df94b3dbb7049cf5cbd521246dd1 /gcc/gdbinit.in | |
parent | 224e770bb83f20c31314d51dbf4d0f40eba9e1ef (diff) | |
download | gcc-c9092111fd29bb8e26c7dedb96a854d45c442977.zip gcc-c9092111fd29bb8e26c7dedb96a854d45c442977.tar.gz gcc-c9092111fd29bb8e26c7dedb96a854d45c442977.tar.bz2 |
* gdbinit.in: Set a breakpoint on internal_error.
From-SVN: r85031
Diffstat (limited to 'gcc/gdbinit.in')
-rw-r--r-- | gcc/gdbinit.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/gdbinit.in b/gcc/gdbinit.in index 753cd9e..fe63fa5 100644 --- a/gcc/gdbinit.in +++ b/gcc/gdbinit.in @@ -117,6 +117,9 @@ end # to either fprintf/exit or fancy_abort. b fancy_abort +# Put a breakpoint on internal_error to help with debugging ICEs. +b internal_error + # 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 |