[llvm] feat: fix big endian shuffle vector miscompile (PR #68673)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 10 01:49:01 PDT 2023
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 8cc2b51e63f2d3664318629dc3d07f0fd11f3295 be4d279bb201f92a4322054949ee14f20997614c -- llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
index e3dd54a0b59a..b097783c96b3 100644
--- a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -10933,7 +10933,7 @@ SDValue AArch64TargetLowering::ReconstructShuffle(SDValue Op,
}
}
}
-
+
SDValue V = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
LLVM_DEBUG(dbgs() << "Reshuffle, creating node: "; Shuffle.dump();
``````````
</details>
https://github.com/llvm/llvm-project/pull/68673
More information about the llvm-commits
mailing list