[Mlir-commits] [mlir] [mlir] Translate nested debug information (PR #140915)

Mehdi Amini llvmlistbot at llvm.org
Wed May 21 09:00:54 PDT 2025


================
@@ -31,6 +31,14 @@ static FileLineColLoc extractFileLoc(Location loc) {
     return extractFileLoc(nameLoc.getChildLoc());
   if (auto opaqueLoc = dyn_cast<OpaqueLoc>(loc))
     return extractFileLoc(opaqueLoc.getFallbackLocation());
+  if (auto fusedLoc = dyn_cast<FusedLoc>(loc)) {
+    for (auto loc : fusedLoc.getLocations()) {
----------------
joker-eph wrote:

Is there test coverage for this?

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


More information about the Mlir-commits mailing list