Skip to content

Commit 638df9a

Browse files
committed
style
1 parent c661019 commit 638df9a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mlir/lib/Conversion/VectorToLLVM/ConvertVectorToLLVM.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ class VectorLoadStoreConversion : public ConvertOpToLLVMPattern<LoadOrStoreOp> {
248248

249249
// Resolve alignment.
250250
unsigned align = loadOrStoreOp.getAlignment().value_or(0);
251-
if (!align && failed(getVectorToLLVMAlignment(*this->getTypeConverter(), vectorTy,
251+
if (!align &&
252+
failed(getVectorToLLVMAlignment(*this->getTypeConverter(), vectorTy,
252253
memRefTy, align, useVectorAlignment)))
253254
return rewriter.notifyMatchFailure(loadOrStoreOp,
254255
"could not resolve alignment");

0 commit comments

Comments
 (0)