We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ccdd4c commit 6fedc18Copy full SHA for 6fedc18
llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
@@ -631,8 +631,10 @@ void ModuleSanitizerCoverage::instrumentFunction(Function &F) {
631
return;
632
if (F.hasFnAttribute(Attribute::NoSanitizeCoverage))
633
634
- if (Options.CoverageType >= SanitizerCoverageOptions::SCK_Edge)
635
- SplitAllCriticalEdges(F, CriticalEdgeSplittingOptions().setIgnoreUnreachableDests());
+ if (Options.CoverageType >= SanitizerCoverageOptions::SCK_Edge) {
+ SplitAllCriticalEdges(
636
+ F, CriticalEdgeSplittingOptions().setIgnoreUnreachableDests());
637
+ }
638
SmallVector<Instruction *, 8> IndirCalls;
639
SmallVector<BasicBlock *, 16> BlocksToInstrument;
640
SmallVector<Instruction *, 8> CmpTraceTargets;
0 commit comments