[clang] [llvm] [DebugInfo] Fix endianness in DW_AT_const_value for constexpr arrays (PR #184804)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Mar 6 06:29:12 PST 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 h,cpp -- clang/test/DebugInfo/CXX/debug-info-constexpr-array.cpp clang/lib/CodeGen/CGDebugInfo.cpp llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h --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/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
index d3566e90b..139fae562 100644
--- a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
+++ b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
@@ -365,7 +365,7 @@ private:
DISourceLanguageName getLanguage() const {
return CUNode->getSourceLanguage();
}
-
+
/// Emit the bytes of an APInt value into an existing DIEBlock,
/// respecting target endianness.
void addIntToBlock(DIEBlock &Block, const APInt &Val);
``````````
</details>
https://github.com/llvm/llvm-project/pull/184804
More information about the cfe-commits
mailing list