diff options
-rw-r--r-- | lib/Target/SparcV9/SparcV9InstrSelection.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/SparcV9/SparcV9InstrSelection.cpp b/lib/Target/SparcV9/SparcV9InstrSelection.cpp index ce7e4dc..7bdf716 100644 --- a/lib/Target/SparcV9/SparcV9InstrSelection.cpp +++ b/lib/Target/SparcV9/SparcV9InstrSelection.cpp @@ -998,7 +998,6 @@ SetOperandsForMemInstr(vector<MachineInstr*>& mvec, && "Array refs must be lowered before Instruction Selection"); Value* idxVal = idxVec[firstIdxIsZero]; - assert(! isa<Constant>(idxVal) && "Need to sign-extend uint to 64b!"); vector<MachineInstr*> mulVec; Instruction* addr = new TmpInstruction(Type::UIntTy, memInst); @@ -1012,7 +1011,7 @@ SetOperandsForMemInstr(vector<MachineInstr*>& mvec, /*AllowCompositeLeaf*/ true) : ptrType); const Type* eltType = cast<SequentialType>(vecType)->getElementType(); - ConstantUInt* eltSizeVal = ConstantUInt::get(Type::UIntTy, + ConstantUInt* eltSizeVal = ConstantUInt::get(Type::ULongTy, target.DataLayout.getTypeSize(eltType)); // CreateMulInstruction() folds constants intelligently enough. |