From 66b0b0466bbd995146aadaf2cd18de5476c19941 Mon Sep 17 00:00:00 2001 From: Han-Chung Wang Date: Mon, 31 Mar 2025 09:29:54 -0700 Subject: [MLIR][NFC] Fix incomplete boundary comments. (#133516) I observed that we have the boundary comments in the codebase like: ``` //===----------------------------------------------------------------------===// // ... //===----------------------------------------------------------------------===// ``` I also observed that there are incomplete boundary comments. The revision is generated by a script that completes the boundary comments. ``` //===----------------------------------------------------------------------===// // ... ... ``` Signed-off-by: hanhanW --- mlir/lib/Bytecode/Reader/BytecodeReader.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'mlir/lib/Bytecode/Reader/BytecodeReader.cpp') diff --git a/mlir/lib/Bytecode/Reader/BytecodeReader.cpp b/mlir/lib/Bytecode/Reader/BytecodeReader.cpp index 1204f1c..0f2057c 100644 --- a/mlir/lib/Bytecode/Reader/BytecodeReader.cpp +++ b/mlir/lib/Bytecode/Reader/BytecodeReader.cpp @@ -1733,6 +1733,7 @@ LogicalResult BytecodeReader::Impl::parseVersion(EncodingReader &reader) { //===----------------------------------------------------------------------===// // Dialect Section +//===----------------------------------------------------------------------===// LogicalResult BytecodeDialect::load(const DialectReader &reader, MLIRContext *ctx) { @@ -1874,6 +1875,7 @@ BytecodeReader::Impl::parseOpName(EncodingReader &reader, //===----------------------------------------------------------------------===// // Resource Section +//===----------------------------------------------------------------------===// LogicalResult BytecodeReader::Impl::parseResourceSection( EncodingReader &reader, std::optional> resourceData, @@ -1902,6 +1904,7 @@ LogicalResult BytecodeReader::Impl::parseResourceSection( //===----------------------------------------------------------------------===// // UseListOrder Helpers +//===----------------------------------------------------------------------===// FailureOr BytecodeReader::Impl::parseUseListOrderForRange(EncodingReader &reader, @@ -2060,6 +2063,7 @@ LogicalResult BytecodeReader::Impl::processUseLists(Operation *topLevelOp) { //===----------------------------------------------------------------------===// // IR Section +//===----------------------------------------------------------------------===// LogicalResult BytecodeReader::Impl::parseIRSection(ArrayRef sectionData, @@ -2460,6 +2464,7 @@ LogicalResult BytecodeReader::Impl::parseBlockArguments(EncodingReader &reader, //===----------------------------------------------------------------------===// // Value Processing +//===----------------------------------------------------------------------===// Value BytecodeReader::Impl::parseOperand(EncodingReader &reader) { std::vector &values = valueScopes.back().values; -- cgit v1.1