mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 21:24:00 +00:00
unbreak previous checkin :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16966 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1099,7 +1099,7 @@ void llvm::WriteBytecodeToFile(const Module *M, std::ostream &Out) {
|
|||||||
// chunks, until we're done.
|
// chunks, until we're done.
|
||||||
//
|
//
|
||||||
for (std::vector<unsigned char>::const_iterator I = Buffer.begin(),
|
for (std::vector<unsigned char>::const_iterator I = Buffer.begin(),
|
||||||
E = Buffer.end(); I != E; ++I) {
|
E = Buffer.end(); I != E; ) {
|
||||||
// Scan to see how big this chunk is...
|
// Scan to see how big this chunk is...
|
||||||
const unsigned char *ChunkPtr = &*I;
|
const unsigned char *ChunkPtr = &*I;
|
||||||
const unsigned char *LastPtr = ChunkPtr;
|
const unsigned char *LastPtr = ChunkPtr;
|
||||||
|
Reference in New Issue
Block a user