Convert GetElementPtrInst to use ArrayRef.

llvm-svn: 135904
This commit is contained in:
Jay Foad
2011-07-25 09:48:08 +00:00
parent 1dba445e43
commit d1b7849d49
25 changed files with 100 additions and 305 deletions

View File

@@ -2181,7 +2181,7 @@ bool BitcodeReader::ParseFunctionBody(Function *F) {
GEPIdx.push_back(Op);
}
I = GetElementPtrInst::Create(BasePtr, GEPIdx.begin(), GEPIdx.end());
I = GetElementPtrInst::Create(BasePtr, GEPIdx);
InstructionList.push_back(I);
if (BitCode == bitc::FUNC_CODE_INST_INBOUNDS_GEP)
cast<GetElementPtrInst>(I)->setIsInBounds(true);