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 e21aeb4 commit 3471240Copy full SHA for 3471240
llvm/lib/Transforms/Instrumentation/TypeSanitizer.cpp
@@ -497,7 +497,7 @@ void collectMemAccessInfo(
497
if (CallInst *CI = dyn_cast<CallInst>(&Inst))
498
maybeMarkSanitizerLibraryCallNoBuiltin(CI, &TLI);
499
500
- if (isa<MemIntrinsic>(Inst) || isa<LifetimeIntrinsic>(Inst))
+ if (isa<MemIntrinsic, LifetimeIntrinsic>(Inst))
501
MemTypeResetInsts.push_back(&Inst);
502
} else if (isa<AllocaInst>(Inst)) {
503
0 commit comments