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 fd71271 commit fb057c7Copy full SHA for fb057c7
llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
@@ -190,7 +190,8 @@ void NVPTXDAGToDAGISel::Select(SDNode *N) {
190
SelectI128toV2I64(N);
191
return;
192
}
193
- if (N->getOperand(1).getValueType() == MVT::i64) {
+ if (N->getOperand(1).getValueType() == MVT::i64 &&
194
+ N->getValueType(0) == MVT::f32 && N->getValueType(1) == MVT::f32) {
195
// {f32,f32} = mov i64
196
SelectI64ToV2F32(N);
197
0 commit comments