Skip to content

Commit 9f4e205

Browse files
committed
clang-format
1 parent afe1fb0 commit 9f4e205

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

llvm/lib/Transforms/Scalar/LowerMatrixIntrinsics.cpp

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2110,17 +2110,16 @@ class LowerMatrixIntrinsics {
21102110
}
21112111

21122112
/// Lower load instructions, if shape information is available.
2113-
void VisitLoad(LoadInst *Inst, const ShapeInfo &SI, Value *Ptr, IRBuilder<> &Builder) {
2114-
LowerLoad(Inst, Ptr, Inst->getAlign(),
2115-
Builder.getInt64(SI.getStride()), Inst->isVolatile(),
2116-
SI);
2113+
void VisitLoad(LoadInst *Inst, const ShapeInfo &SI, Value *Ptr,
2114+
IRBuilder<> &Builder) {
2115+
LowerLoad(Inst, Ptr, Inst->getAlign(), Builder.getInt64(SI.getStride()),
2116+
Inst->isVolatile(), SI);
21172117
}
21182118

2119-
void VisitStore(StoreInst *Inst, const ShapeInfo &SI, Value *StoredVal, Value *Ptr,
2120-
IRBuilder<> &Builder) {
2119+
void VisitStore(StoreInst *Inst, const ShapeInfo &SI, Value *StoredVal,
2120+
Value *Ptr, IRBuilder<> &Builder) {
21212121
LowerStore(Inst, StoredVal, Ptr, Inst->getAlign(),
2122-
Builder.getInt64(SI.getStride()), Inst->isVolatile(),
2123-
SI);
2122+
Builder.getInt64(SI.getStride()), Inst->isVolatile(), SI);
21242123
}
21252124

21262125
/// Lower binary operators, if shape information is available.

0 commit comments

Comments
 (0)