summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bytecode/Writer
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-10-14 02:06:48 +0000
committerChris Lattner <sabre@nondot.org>2004-10-14 02:06:48 +0000
commitbff972d453a128f478bc015126001f4a3b7736ce (patch)
tree5b2afc5e207ad739440c8e5d6c57844d653206e0 /llvm/lib/Bytecode/Writer
parente8fe2c2418a20dcf159743ab55d316df6f8f5e73 (diff)
downloadbcm5719-llvm-bff972d453a128f478bc015126001f4a3b7736ce.tar.gz
bcm5719-llvm-bff972d453a128f478bc015126001f4a3b7736ce.zip
unbreak previous checkin :(
llvm-svn: 16966
Diffstat (limited to 'llvm/lib/Bytecode/Writer')
-rw-r--r--llvm/lib/Bytecode/Writer/Writer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp
index 605e5121f29..ce6d08a5c03 100644
--- a/llvm/lib/Bytecode/Writer/Writer.cpp
+++ b/llvm/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<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;
OpenPOWER on IntegriCloud