mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Update GEP constructors to use an iterator interface to fix
GLIBCXX_DEBUG issues. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41697 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user