Request that reporters try `-fsanitize=address,undefined` rather than just `-fsanitize=undefined` when reporting bugs. We get invalid bug reports which ASAN would've caught sometimes, even if it's less often than where UBSAN would help. --- OK?
htdocs/bugs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/bugs/index.html b/htdocs/bugs/index.html index c7d2f310..d6556b26 100644 --- a/htdocs/bugs/index.html +++ b/htdocs/bugs/index.html @@ -52,7 +52,7 @@ try a current release</strong> or development snapshot.</p> with <code>gcc -Wall -Wextra</code> and see whether this shows anything wrong with your code. Similarly, if compiling with <code>-fno-strict-aliasing -fwrapv -fno-aggressive-loop-optimizations</code> -makes a difference, or if compiling with <code>-fsanitize=undefined</code> +makes a difference, or if compiling with <code>-fsanitize=address,undefined</code> produces any run-time errors, then your code is probably not correct. </p> base-commit: 96aaafdcdba21aad22fb1b745c75a01855dc5f0c -- 2.47.0