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:
Chris Lattner 2004-10-14 02:06:48 +00:00
parent 84d1ced4a9
commit 823cacc276

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;