@@ -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