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 99beb83 commit dd6d9e4Copy full SHA for dd6d9e4
llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
@@ -4192,7 +4192,7 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
4192
void handleAVXVpermil2var(IntrinsicInst &I) {
4193
assert(I.arg_size() == 3);
4194
assert(I.getArgOperand(0)->getType() == I.getArgOperand(2)->getType());
4195
- assert(I.getType() == I.getArgOperand(0)->getType() );
+ assert(I.getType() == I.getArgOperand(0)->getType());
4196
assert(I.getArgOperand(1)->getType()->isIntOrIntVectorTy());
4197
IRBuilder<> IRB(&I);
4198
Value *AShadow = getShadow(&I, 0);
0 commit comments