Skip to content

Commit b692b77

Browse files
format
1 parent 8853d5f commit b692b77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4098,7 +4098,8 @@ LogicalResult LLVM::SincosOp::verify() {
40984098
resultStructType.getBody()[0] != operandType ||
40994099
resultStructType.getBody()[1] != operandType) {
41004100
return emitOpError("expected result type to be an homogeneous struct with "
4101-
"two elements matching the operand type");
4101+
"two elements matching the operand type, but got ")
4102+
<< resultType;
41024103
}
41034104
return success();
41044105
}

0 commit comments

Comments
 (0)