[flang-commits] [flang] Reland [flang][debug] Emit debug info for named constants- #213974 (PR #215369)
via flang-commits
flang-commits at lists.llvm.org
Mon Aug 24 03:52:42 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/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 25862e1e0..aebe0db92 100644
--- a/flang/lib/Optimizer/Transforms/AddDebugInfo.cpp
+++ b/flang/lib/Optimizer/Transforms/AddDebugInfo.cpp
@@ -1021,8 +1021,8 @@ void AddDebugInfoPass::markSubmoduleAncestorsDefined(mlir::ModuleOp module) {
if (funcOp.isExternal())
continue;
mlir::Attribute attr = funcOp->getAttr(fir::getInternalFuncNameAttrName());
- llvm::StringRef name = attr ? mlir::cast<mlir::StringAttr>(attr).getValue()
- : funcOp.getName();
+ llvm::StringRef name =
+ attr ? mlir::cast<mlir::StringAttr>(attr).getValue() : funcOp.getName();
std::pair result = fir::NameUniquer::deconstruct(name);
if (!result.second.modules.empty())
definedModuleNames.insert(result.second.modules.front());
``````````
</details>
https://github.com/llvm/llvm-project/pull/215369
More information about the flang-commits
mailing list