[llvm] 609732c - [RISCV] Fix warnings
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 08:30:59 PST 2025
Author: Kazu Hirata
Date: 2025-02-20T08:30:53-08:00
New Revision: 609732cc2e6572b25ce195cc009e2b4bae42dcda
URL: https://github.com/llvm/llvm-project/commit/609732cc2e6572b25ce195cc009e2b4bae42dcda
DIFF: https://github.com/llvm/llvm-project/commit/609732cc2e6572b25ce195cc009e2b4bae42dcda.diff
LOG: [RISCV] Fix warnings
This patch fixes:
llvm/lib/Target/RISCV/RISCVISelLowering.cpp:5723:24: error: captured
structured bindings are a C++20 extension
[-Werror,-Wc++20-extensions]
llvm/lib/Target/RISCV/RISCVISelLowering.cpp:5728:76: error: captured
structured bindings are a C++20 extension
[-Werror,-Wc++20-extensions]
Added:
Modified:
llvm/lib/Target/RISCV/RISCVISelLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
index 78a18d715512f..18f92faa43c5e 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -5473,7 +5473,11 @@ static SDValue lowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG,
MVT ContainerVT = getContainerForFixedLengthVector(DAG, VT, Subtarget);
- auto [TrueMask, VL] = getDefaultVLOps(VT, ContainerVT, DL, DAG, Subtarget);
+ // Store the return value in a single variable instead of structured bindings
+ // so that we can pass it to GetSlide below, which cannot capture structured
+ // bindings until C++20.
+ auto TrueMaskVL = getDefaultVLOps(VT, ContainerVT, DL, DAG, Subtarget);
+ auto [TrueMask, VL] = TrueMaskVL;
if (SVN->isSplat()) {
const int Lane = SVN->getSplatIndex();
@@ -5716,6 +5720,7 @@ static SDValue lowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG,
};
auto GetSlide = [&](const std::pair<int, int> &Src, SDValue Mask,
SDValue Passthru) {
+ auto [TrueMask, VL] = TrueMaskVL;
SDValue SrcV = GetSourceFor(Src);
int SlideAmt = Src.second;
if (SlideAmt == 0) {
More information about the llvm-commits
mailing list