[llvm] eb8c27c - [RISCV] Use std::make_tuple to make some toolchains happy again
Mikael Holmen via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 8 05:48:44 PST 2021
Author: Mikael Holmen
Date: 2021-02-08T14:37:25+01:00
New Revision: eb8c27c60c33448e3d376971e59b8eb674e9b1de
URL: https://github.com/llvm/llvm-project/commit/eb8c27c60c33448e3d376971e59b8eb674e9b1de
DIFF: https://github.com/llvm/llvm-project/commit/eb8c27c60c33448e3d376971e59b8eb674e9b1de.diff
LOG: [RISCV] Use std::make_tuple to make some toolchains happy again
My toolchain (LLVM 8.0, libstdc++ 5.4.0) complained with:
12:38:19 ../lib/Target/RISCV/RISCVISelLowering.cpp:1717:12: error: chosen constructor is explicit in copy-initialization
12:38:19 return {RISCVISD::VECREDUCE_FADD, Op.getOperand(0),
12:38:19 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12:38:19 /proj/flexasic/app/llvm/8.0/bin/../lib/gcc/x86_64-unknown-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple:479:19: note: explicit constructor declared here
12:38:19 constexpr tuple(_UElements&&... __elements)
12:38:19 ^
12:38:19 ../lib/Target/RISCV/RISCVISelLowering.cpp:1720:12: error: chosen constructor is explicit in copy-initialization
12:38:19 return {RISCVISD::VECREDUCE_SEQ_FADD, Op.getOperand(1), Op.getOperand(0)};
12:38:19 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12:38:19 /proj/flexasic/app/llvm/8.0/bin/../lib/gcc/x86_64-unknown-linux-gnu/5.4.0/../../../../include/c++/5.4.0/tuple:479:19: note: explicit constructor declared here
12:38:19 constexpr tuple(_UElements&&... __elements)
12:38:19 ^
12:38:19 2 errors generated.
This commit adds explicit calls to std::make_tuple to work around
the problem.
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 34603181835c..6c94d953e0da 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -1714,10 +1714,11 @@ getRVVFPReductionOpAndOperands(SDValue Op, SelectionDAG &DAG, EVT EltVT) {
default:
llvm_unreachable("Unhandled reduction");
case ISD::VECREDUCE_FADD:
- return {RISCVISD::VECREDUCE_FADD, Op.getOperand(0),
- DAG.getConstantFP(0.0, DL, EltVT)};
+ return std::make_tuple(RISCVISD::VECREDUCE_FADD, Op.getOperand(0),
+ DAG.getConstantFP(0.0, DL, EltVT));
case ISD::VECREDUCE_SEQ_FADD:
- return {RISCVISD::VECREDUCE_SEQ_FADD, Op.getOperand(1), Op.getOperand(0)};
+ return std::make_tuple(RISCVISD::VECREDUCE_SEQ_FADD, Op.getOperand(1),
+ Op.getOperand(0));
}
}
More information about the llvm-commits
mailing list