diff options
Diffstat (limited to 'rust/sanitize.go')
| -rw-r--r-- | rust/sanitize.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/sanitize.go b/rust/sanitize.go index be9dc42a8..39aaf33c2 100644 --- a/rust/sanitize.go +++ b/rust/sanitize.go @@ -57,7 +57,7 @@ type SanitizeProperties struct { } var fuzzerFlags = []string{ - "-C passes='sancov'", + "-C passes='sancov-module'", "--cfg fuzzing", "-C llvm-args=-sanitizer-coverage-level=3", @@ -70,7 +70,7 @@ var fuzzerFlags = []string{ "-C link-dead-code", // Sancov breaks with lto - // TODO: Remove when https://bugs.llvm.org/show_bug.cgi?id=41734 is resolved and sancov works with LTO + // TODO: Remove when https://bugs.llvm.org/show_bug.cgi?id=41734 is resolved and sancov-module works with LTO "-C lto=no", } |