https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115345
Sam James <sjames at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sjames at gcc dot gnu.org --- Comment #14 from Sam James <sjames at gcc dot gnu.org> --- It's worth keeping in mind: * Fuzzers are distinct from sanitizers (fuzzers run with random or ~random input and often use sanitizers to help find issues) * Fuzzers might not be hitting the code you're having trouble with * The implementations of sanitizers in gcc vs clang are different (and AFAIK oss-fuzz uses clang). They share libsanitizer but when to add instrumentation varies. * Valgrind can find things that some sanitizers can't.