[llvm-branch-commits] [llvm] [DataLayout][LangRef] Split non-integral and unstable pointer properties (PR #105735)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Oct 25 14:58:52 PDT 2024
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 c55290e17cfbf099942dc4975e9a78612c940650 94ecfa353dcf44087797594a8f77f9653c8b8e4a --extensions h,cpp -- llvm/include/llvm/IR/DataLayout.h llvm/lib/IR/DataLayout.cpp llvm/unittests/IR/DataLayoutTest.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/unittests/IR/DataLayoutTest.cpp b/llvm/unittests/IR/DataLayoutTest.cpp
index 8b6616ce0f..f8efc411f8 100644
--- a/llvm/unittests/IR/DataLayoutTest.cpp
+++ b/llvm/unittests/IR/DataLayoutTest.cpp
@@ -412,7 +412,8 @@ TEST(DataLayout, ParsePointerSpec) {
"pn0:64:64", "pu0:64:64", "pun0:64:64", "pnu0:64:64"})
EXPECT_THAT_EXPECTED(
DataLayout::parse(Str),
- FailedWithMessage("address space 0 cannot be non-integral or unstable"));
+ FailedWithMessage(
+ "address space 0 cannot be non-integral or unstable"));
}
TEST(DataLayoutTest, ParseNativeIntegersSpec) {
``````````
</details>
https://github.com/llvm/llvm-project/pull/105735
More information about the llvm-branch-commits
mailing list