Use 8i32 constant pool entry for converting AVX2_SETALLONES. Possibly fixes PR11750.
[oota-llvm.git] / lib / Target / X86 / X86InstrInfo.cpp
index 7d1b9a1fe50d67e91100566ad1908d96f84b03bd..f5ca7c2b4aa04b774df201af81ccda3b689d32ca 100644 (file)
@@ -2985,6 +2985,8 @@ MachineInstr* X86InstrInfo::foldMemoryOperandImpl(MachineFunction &MF,
       Ty = Type::getDoubleTy(MF.getFunction()->getContext());
     else if (Opc == X86::AVX_SET0PSY || Opc == X86::AVX_SET0PDY)
       Ty = VectorType::get(Type::getFloatTy(MF.getFunction()->getContext()), 8);
+    else if (Opc == X86::AVX2_SETALLONES)
+      Ty = VectorType::get(Type::getInt32Ty(MF.getFunction()->getContext()), 8);
     else
       Ty = VectorType::get(Type::getInt32Ty(MF.getFunction()->getContext()), 4);