Skip to content

Commit 5d4619e

Browse files
committed
clang format
1 parent 3ea18c4 commit 5d4619e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

mlir/lib/Dialect/Polynomial/IR/PolynomialOps.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,10 @@ static LogicalResult verifyNTTOp(Operation *op, RingAttr ring,
165165
APInt cmod = ring.getCoefficientModulus().getValue();
166166
if (!isPrimitiveNthRootOfUnity(rootValue, rootDegree, cmod)) {
167167
return op->emitOpError()
168-
<< "provided root " << rootValue.getZExtValue() << " is not a primitive root "
169-
<< "of unity mod " << cmod.getZExtValue() << ", with the specified degree "
170-
<< rootDegree.getZExtValue();
168+
<< "provided root " << rootValue.getZExtValue()
169+
<< " is not a primitive root "
170+
<< "of unity mod " << cmod.getZExtValue()
171+
<< ", with the specified degree " << rootDegree.getZExtValue();
171172
}
172173
}
173174

0 commit comments

Comments
 (0)