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 dfa0918 commit c375389Copy full SHA for c375389
llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
@@ -1277,7 +1277,8 @@ bool NVPTXDAGToDAGISel::tryLDGLDU(SDNode *N) {
1277
EltVT = EltVT.getVectorElementType();
1278
// vectors of 8/16bits type are loaded/stored as multiples of v4i8/v2x16
1279
// elements.
1280
- if ((EltVT == MVT::f16 && OrigType == MVT::v2f16) ||
+ if ((EltVT == MVT::f32 && OrigType == MVT::v2f32) ||
1281
+ (EltVT == MVT::f16 && OrigType == MVT::v2f16) ||
1282
(EltVT == MVT::bf16 && OrigType == MVT::v2bf16) ||
1283
(EltVT == MVT::i16 && OrigType == MVT::v2i16) ||
1284
(EltVT == MVT::i8 && OrigType == MVT::v4i8)) {
0 commit comments