Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/test/Instrumentation/SanitizerCoverage/inline-bool-flag.ll | ||
---|---|---|
2 | you can use env var for that |
llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp | ||
---|---|---|
951 | This should be the opposite? |
llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp | ||
---|---|---|
951 | Now: if (Load) { Store } should be : if (!Load) { Store } |
llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp | ||
---|---|---|
951 | My bad; fixing. |
This should be the opposite?
I'll fix this.