Skip to content

Commit dd6d9e4

Browse files
committed
fmt
Created using spr 1.3.4
1 parent 99beb83 commit dd6d9e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4192,7 +4192,7 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
41924192
void handleAVXVpermil2var(IntrinsicInst &I) {
41934193
assert(I.arg_size() == 3);
41944194
assert(I.getArgOperand(0)->getType() == I.getArgOperand(2)->getType());
4195-
assert(I.getType() == I.getArgOperand(0)->getType() );
4195+
assert(I.getType() == I.getArgOperand(0)->getType());
41964196
assert(I.getArgOperand(1)->getType()->isIntOrIntVectorTy());
41974197
IRBuilder<> IRB(&I);
41984198
Value *AShadow = getShadow(&I, 0);

0 commit comments

Comments
 (0)