File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
llvm/lib/Transforms/Scalar Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1112,7 +1112,8 @@ class LowerMatrixIntrinsics {
11121112
11131113 // / Replace intrinsic calls.
11141114 void VisitCallInst (CallInst *Inst) {
1115- assert (Inst->getCalledFunction () && Inst->getCalledFunction ()->isIntrinsic ());
1115+ assert (Inst->getCalledFunction () &&
1116+ Inst->getCalledFunction ()->isIntrinsic ());
11161117
11171118 switch (Inst->getCalledFunction ()->getIntrinsicID ()) {
11181119 case Intrinsic::matrix_multiply:
@@ -1128,7 +1129,8 @@ class LowerMatrixIntrinsics {
11281129 LowerColumnMajorStore (Inst);
11291130 break ;
11301131 default :
1131- llvm_unreachable (" only intrinsics supporting shape info should be seen here" );
1132+ llvm_unreachable (
1133+ " only intrinsics supporting shape info should be seen here" );
11321134 }
11331135 }
11341136
You can’t perform that action at this time.
0 commit comments