We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e1f438 commit f608269Copy full SHA for f608269
mlir/lib/IR/AsmPrinter.cpp
@@ -74,11 +74,9 @@ MLIRContext *AsmParser::getContext() const { return getBuilder().getContext(); }
74
/// Parse a type list.
75
/// This is out-of-line to work-around https://github.com/llvm/llvm-project/issues/62918
76
ParseResult AsmParser::parseTypeList(SmallVectorImpl<Type> &result) {
77
- return parseCommaSeparatedList(
78
- [&]() { return parseType(result.emplace_back()); });
79
- }
80
-
81
+ return parseCommaSeparatedList(
+ [&]() { return parseType(result.emplace_back()); });
+}
82
83
//===----------------------------------------------------------------------===//
84
// DialectAsmPrinter
0 commit comments