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 23763a1 commit 4c7aa6fCopy full SHA for 4c7aa6f
llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
@@ -4702,7 +4702,8 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
4702
// These AVX512 variants contain the rounding mode as a trailing flag.
4703
// Earlier variants do not have a trailing flag and are already handled
4704
// by maybeHandleSimpleNomemIntrinsic(I, 0) via handleUnknownIntrinsic.
4705
- bool Success = maybeHandleSimpleNomemIntrinsic(I, /*trailingFlags=*/1);
+ [[maybe_unused]] bool Success =
4706
+ maybeHandleSimpleNomemIntrinsic(I, /*trailingFlags=*/1);
4707
assert(Success);
4708
break;
4709
}
0 commit comments