Skip to content

Commit a23352c

Browse files
committed
clang-format
1 parent 506431a commit a23352c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

llvm/lib/Transforms/Scalar/LowerMatrixIntrinsics.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)