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 73adce2 commit 25f1e0cCopy full SHA for 25f1e0c
llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -1541,7 +1541,7 @@ static bool isJointMatrixAccess(Value *V) {
1541
for (Value *Op : CI->args()) {
1542
if (auto *AI = dyn_cast<AllocaInst>(Op->stripInBoundsOffsets()))
1543
if (auto *TargetTy = getTargetExtType(AI->getAllocatedType()))
1544
- return TargetTy->getName().startswith("spirv.") &&
+ return TargetTy->getName().starts_with("spirv.") &&
1545
TargetTy->getName().contains("Matrix");
1546
}
1547
0 commit comments