[opaque pointer type] more gep API migration

llvm-svn: 232274
This commit is contained in:
David Blaikie
2015-03-14 19:53:33 +00:00
parent 20b76ac2ae
commit 096b1da29d
5 changed files with 19 additions and 19 deletions

View File

@@ -3131,7 +3131,7 @@ std::error_code BitcodeReader::ParseFunctionBody(Function *F) {
GEPIdx.push_back(Op);
}
I = GetElementPtrInst::Create(BasePtr, GEPIdx);
I = GetElementPtrInst::Create(Ty, BasePtr, GEPIdx);
if (Ty && Ty != cast<GetElementPtrInst>(I)->getSourceElementType())
return Error("Invalid record");
InstructionList.push_back(I);