Skip to content

Commit f608269

Browse files
authored
[MLIR] Fix a small formatting issue in AsmPrinter.cpp (llvm#81214)
Introduced in 76ce473
1 parent 6e1f438 commit f608269

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

mlir/lib/IR/AsmPrinter.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,9 @@ MLIRContext *AsmParser::getContext() const { return getBuilder().getContext(); }
7474
/// Parse a type list.
7575
/// This is out-of-line to work-around https://github.com/llvm/llvm-project/issues/62918
7676
ParseResult AsmParser::parseTypeList(SmallVectorImpl<Type> &result) {
77-
return parseCommaSeparatedList(
78-
[&]() { return parseType(result.emplace_back()); });
79-
}
80-
81-
77+
return parseCommaSeparatedList(
78+
[&]() { return parseType(result.emplace_back()); });
79+
}
8280

8381
//===----------------------------------------------------------------------===//
8482
// DialectAsmPrinter

0 commit comments

Comments
 (0)