[Mlir-commits] [mlir] [mlir] Add FileRange location type. (PR #80213)

River Riddle llvmlistbot at llvm.org
Fri Nov 1 10:01:36 PDT 2024


================
@@ -164,6 +169,32 @@ class FusedLocWith : public FusedLoc {
   }
 };
 
+//===----------------------------------------------------------------------===//
+// FileLineColLoc
+//===----------------------------------------------------------------------===//
+
+// An instance of this location represents a tuple of file, line number, and
+// column number. This is similar to the type of location that you get from
+// most source languages.
+//
+// FileLineColLoc is a FileLineColRange with exactly one line and column.
----------------
River707 wrote:

```suggestion
/// An instance of this location represents a tuple of file, line number, and
/// column number. This is similar to the type of location that you get from
/// most source languages.
///
/// FileLineColLoc is a FileLineColRange with exactly one line and column.
```

https://github.com/llvm/llvm-project/pull/80213


More information about the Mlir-commits mailing list