Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set LLVM Flag to Disable cmov (select instr) generation #380

Merged
merged 8 commits into from
Aug 7, 2024
3 changes: 2 additions & 1 deletion src/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ impl FuzzProject {
let mut rustflags: String = "-Cpasses=sancov-module \
-Cllvm-args=-sanitizer-coverage-level=4 \
-Cllvm-args=-sanitizer-coverage-inline-8bit-counters \
-Cllvm-args=-sanitizer-coverage-pc-table"
-Cllvm-args=-sanitizer-coverage-pc-table \
-Cllvm-args=-simplifycfg-branch-fold-threshold=0"
.to_owned();

if !build.no_trace_compares {
Expand Down
Loading