We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbd3aaf commit 9aa2139Copy full SHA for 9aa2139
llvm/lib/Target/RISCV/GISel/RISCVLegalizerInfo.cpp
@@ -75,10 +75,10 @@ RISCVLegalizerInfo::RISCVLegalizerInfo(const RISCVSubtarget &ST)
75
76
using namespace TargetOpcode;
77
78
- auto AllVecTys = std::initializer_list<LLT>{
79
- nxv1s8, nxv2s8, nxv4s8, nxv8s8, nxv16s8, nxv32s8, nxv64s8, nxv1s16,
80
- nxv2s16, nxv4s16, nxv8s16, nxv16s16, nxv32s16, nxv1s32, nxv2s32, nxv4s32,
81
- nxv8s32, nxv16s32, nxv1s64, nxv2s64, nxv4s64, nxv8s64};
+ auto AllVecTys = {nxv1s8, nxv2s8, nxv4s8, nxv8s8, nxv16s8, nxv32s8,
+ nxv64s8, nxv1s16, nxv2s16, nxv4s16, nxv8s16, nxv16s16,
+ nxv32s16, nxv1s32, nxv2s32, nxv4s32, nxv8s32, nxv16s32,
+ nxv1s64, nxv2s64, nxv4s64, nxv8s64};
82
83
getActionDefinitionsBuilder({G_ADD, G_SUB, G_AND, G_OR, G_XOR})
84
.legalFor({s32, sXLen})
0 commit comments