summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorburnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-24 16:02:10 +0000
committerburnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-24 16:02:10 +0000
commit44b28efc77e651970b3e9fe5a0fae2f69de7b542 (patch)
tree785296439c2668a5205c415a8f1a2d429004b7de
parent80814f7a27e0354c35229700f30910e5404dbbb8 (diff)
downloadgcc-44b28efc77e651970b3e9fe5a0fae2f69de7b542.tar.gz
2013-11-24 Tobias Burnus <burnus@net-b.de>
* doc/invoke.texi (-fsanitize=leak): Add link to the wiki page. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205336 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/invoke.texi7
2 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 126109e7a88..903725782d0 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2013-11-24 Tobias Burnus <burnus@net-b.de>
+
+ * doc/invoke.texi (-fsanitize=leak): Add link to the wiki page.
+
2013-11-24 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
* config/rs6000/rs6000.c (rs6000_expand_vec_perm_const_1): Correct
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index 0708836443a..568c90d024c 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -5267,14 +5267,17 @@ See @uref{http://code.google.com/p/address-sanitizer/} for more details.
Enable ThreadSanitizer, a fast data race detector.
Memory access instructions will be instrumented to detect
data race bugs.
-See @uref{http://code.google.com/p/data-race-test/wiki/ThreadSanitizer} for more details.
+See @uref{http://code.google.com/p/data-race-test/wiki/ThreadSanitizer} for
+more details.
@item -fsanitize=leak
Enable LeakSanitizer, a memory leak detector.
This option only matters for linking of executables and if neither
@option{-fsanitize=address} nor @option{-fsanitize=thread} is used. In that
case it will link the executable against a library that overrides @code{malloc}
-and other allocator functions.
+and other allocator functions. See
+@uref{https://code.google.com/p/address-sanitizer/wiki/LeakSanitizer} for more
+details.
@item -fsanitize=undefined
Enable UndefinedBehaviorSanitizer, a fast undefined behavior detector.