[Lldb-commits] [lldb] [llvm] Revert "[AArch64] Fix definition of system register move instructions" (PR #201137)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 2 07:54:15 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 c,cpp -- lldb/test/API/commands/register/aarch64_dynamic_regset/main.c lldb/test/API/commands/register/aarch64_sve_registers/rw_access_static_config/main.c llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.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/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp b/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
index 3fad1ef35..b619f525a 100644
--- a/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
+++ b/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
@@ -4270,8 +4270,8 @@ static int getIntOperandFromRegisterString(StringRef RegString) {
// Need to combine the integer fields of the string into a single value
// based on the bit encoding of MRS/MSR instruction.
- return (Ops[0] << 14) | (Ops[1] << 11) | (Ops[2] << 7) |
- (Ops[3] << 3) | (Ops[4]);
+ return (Ops[0] << 14) | (Ops[1] << 11) | (Ops[2] << 7) | (Ops[3] << 3) |
+ (Ops[4]);
}
// Lower the read_register intrinsic to an MRS instruction node if the special
``````````
</details>
https://github.com/llvm/llvm-project/pull/201137
More information about the lldb-commits
mailing list