diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 23:32:28 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-16 23:32:28 +0000 |
commit | d484ca6428ffb94637160743ccb0ca048bba7e3c (patch) | |
tree | a9e689d2bda4b99ef7ece1ec31d66ed0b68ef75d /llvm/lib/Bytecode/Writer/Writer.cpp | |
parent | abdff3fecd38123ca114ee19c3cfa86a1f094184 (diff) | |
download | bcm5719-llvm-d484ca6428ffb94637160743ccb0ca048bba7e3c.tar.gz bcm5719-llvm-d484ca6428ffb94637160743ccb0ca048bba7e3c.zip |
Make long line fit in 80 cols.
llvm-svn: 36183
Diffstat (limited to 'llvm/lib/Bytecode/Writer/Writer.cpp')
-rw-r--r-- | llvm/lib/Bytecode/Writer/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index c48bb223a80..4688e69ef2f 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/lib/Bytecode/Writer/Writer.cpp @@ -1000,7 +1000,7 @@ void BytecodeWriter::outputModuleInfoBlock(const Module *M) { unsigned CC = I->getCallingConv()+1; unsigned ID = (Slot << 5) | (CC & 15); - if (I->isDeclaration()) // If external, we don't have an FunctionInfo block. + if (I->isDeclaration()) // If external, we don't have an FunctionInfo block. ID |= 1 << 4; if (I->getAlignment() || I->hasSection() || (CC & ~15) != 0 || |