[flang-commits] [flang] [flang][debug] Only import debug info for specified renamed variables (PR #194926)
via flang-commits
flang-commits at lists.llvm.org
Fri May 1 13:07:53 PDT 2026
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp -- flang/lib/Lower/PFTBuilder.cpp flang/lib/Optimizer/Transforms/AddDebugInfo.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/flang/lib/Optimizer/Transforms/AddDebugInfo.cpp b/flang/lib/Optimizer/Transforms/AddDebugInfo.cpp
index 09efc27f9..e0f572560 100644
--- a/flang/lib/Optimizer/Transforms/AddDebugInfo.cpp
+++ b/flang/lib/Optimizer/Transforms/AddDebugInfo.cpp
@@ -844,10 +844,10 @@ void AddDebugInfoPass::handleOnlyClause(
}
}
- if (isInRenames)
- continue;
+ if (isInRenames)
+ continue;
- if (auto importedDecl = createImportedDeclForGlobal(
+ if (auto importedDecl = createImportedDeclForGlobal(
symbolRef.getValue(), spAttr, fileAttr, mlir::StringAttr(),
symbolTable))
importedModules.insert(*importedDecl);
``````````
</details>
https://github.com/llvm/llvm-project/pull/194926
More information about the flang-commits
mailing list