Skip to content

Commit b9e0bb0

Browse files
committed
[HW] Insert a space to the error message in HWModuleOp, NFC
1 parent 425b148 commit b9e0bb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Dialect/HW/HWOps.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,7 @@ LogicalResult HWModuleOp::verify() {
11341134
// Verify the number of block arguments.
11351135
auto numInputs = type.getNumInputs();
11361136
if (body->getNumArguments() != numInputs)
1137-
return emitOpError("entry block must have")
1137+
return emitOpError("entry block must have ")
11381138
<< numInputs << " arguments to match module signature";
11391139

11401140
return success();

0 commit comments

Comments
 (0)