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 bb34b1d commit 6585af4Copy full SHA for 6585af4
llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
@@ -2520,7 +2520,7 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
2520
Value *S1V2 = IRB.CreateAnd(S1, V2);
2521
2522
Value *S = IRB.CreateOr({S1S2, V1S2, S1V2});
2523
- auto* MaybeDisjoint = cast<PossiblyDisjointInst>(&I);
+ auto *MaybeDisjoint = cast<PossiblyDisjointInst>(&I);
2524
if (MaybeDisjoint->isDisjoint()) {
2525
Value *V1V2 = IRB.CreateAnd(V1, V2);
2526
S = IRB.CreateOr({S, V1V2});
0 commit comments