Remove assertion which is never reached.

llvm-svn: 8318
This commit is contained in:
Brian Gaeke 2003-09-02 06:45:34 +00:00
parent 4f9c82c723
commit e248195b22
1 changed files with 0 additions and 1 deletions

View File

@ -94,7 +94,6 @@ GetElementPtrInst::GetElementPtrInst(Value *Ptr, const std::vector<Value*> &Idx,
: Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),
Idx, true))),
GetElementPtr, Name, InBe) {
assert(getIndexedType(Ptr->getType(), Idx, true) && "gep operands invalid!");
Operands.reserve(1+Idx.size());
Operands.push_back(Use(Ptr, this));