Skip to content

Commit 9b3a5a1

Browse files
committed
update punctuation in error message
1 parent 4c722d4 commit 9b3a5a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/LLVMIR/IR/NVVMDialect.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ LogicalResult ShflOp::verify() {
872872
auto verifyTypeError = [&](Twine desc, Type expectedType,
873873
Type actualType) -> LogicalResult {
874874
return emitOpError("expected " + desc + " to be of type ")
875-
<< expectedType << " but got " << actualType << " instead.";
875+
<< expectedType << " but got " << actualType << " instead";
876876
};
877877

878878
if (returnStructType) {

0 commit comments

Comments
 (0)