[Mlir-commits] [llvm] [mlir] [OMPIRBuilder][debug] Fix debug info for variables in target region. (PR #118314)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Fri Feb 7 09:07:18 PST 2025


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 d0f472c246911e35656bf24fd282f80d7482211a e214fd6f35b6f3df96e9a2d7c1de5dd9fd9ce782 --extensions cpp -- llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp b/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
index 78c465c0a2..4dd22b2f31 100644
--- a/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+++ b/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
@@ -6828,7 +6828,7 @@ static void FixupDebugInfoForOutlinedFunction(
       return NewVar;
 
     DILocalScope *NewScope = DILocalScope::cloneScopeForSubprogram(
-      *OldVar->getScope(), *NewSP, Builder.getContext(), Cache);
+        *OldVar->getScope(), *NewSP, Builder.getContext(), Cache);
     NewVar = llvm::DILocalVariable::get(
         Builder.getContext(), NewScope, OldVar->getName(), OldVar->getFile(),
         OldVar->getLine(), OldVar->getType(), arg, OldVar->getFlags(),

``````````

</details>


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


More information about the Mlir-commits mailing list