Skip to content

Commit 767ef4c

Browse files
committed
Address comments
1 parent 34edc40 commit 767ef4c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mlir/lib/Dialect/SPIRV/IR/SPIRVOps.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -808,9 +808,8 @@ void spirv::EntryPointOp::print(OpAsmPrinter &printer) {
808808
printer << " \"" << stringifyExecutionModel(getExecutionModel()) << "\" ";
809809
printer.printSymbolName(getFn());
810810
auto interfaceVars = getInterface().getValue();
811-
if (!interfaceVars.empty()) {
811+
if (!interfaceVars.empty())
812812
printer << ", " << llvm::interleaved(interfaceVars);
813-
}
814813
}
815814

816815
LogicalResult spirv::EntryPointOp::verify() {

0 commit comments

Comments
 (0)