Update GEP constructors to use an iterator interface to fix

GLIBCXX_DEBUG issues.

llvm-svn: 41697
This commit is contained in:
David Greene
2007-09-04 15:46:09 +00:00
parent 77b97002e9
commit c656cbb8c2
21 changed files with 195 additions and 160 deletions

View File

@@ -1234,7 +1234,7 @@ bool BitcodeReader::ParseFunctionBody(Function *F) {
GEPIdx.push_back(Op);
}
I = new GetElementPtrInst(BasePtr, &GEPIdx[0], GEPIdx.size());
I = new GetElementPtrInst(BasePtr, GEPIdx.begin(), GEPIdx.end());
break;
}