From: Chris Lattner Date: Thu, 14 Oct 2004 02:06:48 +0000 (+0000) Subject: unbreak previous checkin :( X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=823cacc276ea8e484e22f3b68c8fe620edcfb69c;p=oota-llvm.git unbreak previous checkin :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16966 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp index 605e5121f29..ce6d08a5c03 100644 --- a/lib/Bytecode/Writer/Writer.cpp +++ b/lib/Bytecode/Writer/Writer.cpp @@ -1099,7 +1099,7 @@ void llvm::WriteBytecodeToFile(const Module *M, std::ostream &Out) { // chunks, until we're done. // for (std::vector::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;