diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2014-01-09 18:40:13 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2014-01-09 10:40:13 -0800 |
commit | d1c0e4acf196749f3f9c4428b0de80829da7d811 (patch) | |
tree | 8de677ee36636a4f3a30fe6b3d9ff2c9eea4bb85 | |
parent | f0bc4aead81f19574ae543f3ce9e9849a2b6bec8 (diff) | |
download | gcc-d1c0e4acf196749f3f9c4428b0de80829da7d811.zip gcc-d1c0e4acf196749f3f9c4428b0de80829da7d811.tar.gz gcc-d1c0e4acf196749f3f9c4428b0de80829da7d811.tar.bz2 |
Put a breakpoint on __sanitizer::Report
* gdbasan.in: Put a breakpoint on __sanitizer::Report.
From-SVN: r206481
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/gdbasan.in | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dd9f875..5cca2b4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-01-09 H.J. Lu <hongjiu.lu@intel.com> + + * gdbasan.in: Put a breakpoint on __sanitizer::Report. + 2014-01-09 Jakub Jelinek <jakub@redhat.com> PR target/58115 diff --git a/gcc/gdbasan.in b/gcc/gdbasan.in index cf05825..3a6fca0 100644 --- a/gcc/gdbasan.in +++ b/gcc/gdbasan.in @@ -1,3 +1,7 @@ # Put a breakpoint on __asan_report_error to help with debugging buffer # overflow. b __asan_report_error + +# Put a breakpoint on __sanitizer::Report to help with debugging sanitizer +# issues. +b __sanitizer::Report |