diff options
author | Martin Liska <mliska@suse.cz> | 2016-05-13 13:12:35 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2016-05-13 11:12:35 +0000 |
commit | 26ea7e05231928b7a175943fc7261d4529609bb7 (patch) | |
tree | 7e68e34a886bf6c17c5917299959fbab40c58f86 | |
parent | 623b8e0a868c99a58d453d03430efe19a3b89a90 (diff) | |
download | gcc-26ea7e05231928b7a175943fc7261d4529609bb7.zip gcc-26ea7e05231928b7a175943fc7261d4529609bb7.tar.gz gcc-26ea7e05231928b7a175943fc7261d4529609bb7.tar.bz2 |
Enhance explanation of halt_on_error.
* doc/invoke.texi: Enhance explanation of error recovery
of sanitizers.
From-SVN: r236202
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 93ecfc9..098da0a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2016-05-13 Martin Liska <mliska@suse.cz> + * doc/invoke.texi: Enhance explanation of error recovery + of sanitizers. + +2016-05-13 Martin Liska <mliska@suse.cz> + * tree-ssa-loop-ivopts.c (avg_loop_niter): Fix coding style. (struct cost_pair): Change inv_expr_id (int) to inv_expr (iv_inv_expr_ent *). diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 1176d12..8f35f47 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -10011,9 +10011,8 @@ Even if a recovery mode is turned on the compiler side, it needs to be also enabled on the runtime library side, otherwise the failures are still fatal. The runtime library defaults to @code{halt_on_error=0} for ThreadSanitizer and UndefinedBehaviorSanitizer, while default value for -AddressSanitizer is @code{halt_on_error=1}. This can overridden through -the following environment variables: @env{ASAN_OPTIONS}, @env{TSAN_OPTIONS}, -@env{UBSAN_OPTIONS}. +AddressSanitizer is @code{halt_on_error=1}. This can be overridden through +setting the @code{halt_on_error} flag in the corresponding environment variable. Syntax without explicit @var{opts} parameter is deprecated. It is equivalent to @smallexample |