summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bytecode
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-05-06 20:27:03 +0000
committerChris Lattner <sabre@nondot.org>2005-05-06 20:27:03 +0000
commitb25b6304b745e7c4f3f35af3d16182fa4e7a9dce (patch)
treeda26ee93c333027b49f2073b5254b5661326bcf9 /llvm/lib/Bytecode
parentf7b6d3191b22f5827457ac6116c3662f2acde8ca (diff)
downloadbcm5719-llvm-b25b6304b745e7c4f3f35af3d16182fa4e7a9dce.tar.gz
bcm5719-llvm-b25b6304b745e7c4f3f35af3d16182fa4e7a9dce.zip
wrap a longline
llvm-svn: 21747
Diffstat (limited to 'llvm/lib/Bytecode')
-rw-r--r--llvm/lib/Bytecode/Writer/Writer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp
index 5f614fddf08..63cb2d0c5a1 100644
--- a/llvm/lib/Bytecode/Writer/Writer.cpp
+++ b/llvm/lib/Bytecode/Writer/Writer.cpp
@@ -897,7 +897,8 @@ void BytecodeWriter::outputModuleInfoBlock(const Module *M) {
BytecodeBlock ModuleInfoBlock(BytecodeFormat::ModuleGlobalInfoBlockID, *this);
// Output the types for the global variables in the module...
- for (Module::const_global_iterator I = M->global_begin(), End = M->global_end(); I != End;++I) {
+ for (Module::const_global_iterator I = M->global_begin(),
+ End = M->global_end(); I != End;++I) {
int Slot = Table.getSlot(I->getType());
assert(Slot != -1 && "Module global vars is broken!");
OpenPOWER on IntegriCloud