unbreak previous checkin :(

llvm-svn: 16966
This commit is contained in:
Chris Lattner 2004-10-14 02:06:48 +00:00
parent e8fe2c2418
commit bff972d453
1 changed files with 1 additions and 1 deletions

View File

@ -1099,7 +1099,7 @@ void llvm::WriteBytecodeToFile(const Module *M, std::ostream &Out) {
// chunks, until we're done.
//
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...
const unsigned char *ChunkPtr = &*I;
const unsigned char *LastPtr = ChunkPtr;