Make long line fit in 80 cols.

llvm-svn: 36183
This commit is contained in:
Reid Spencer 2007-04-16 23:32:28 +00:00
parent abdff3fecd
commit d484ca6428
1 changed files with 1 additions and 1 deletions

View File

@ -1000,7 +1000,7 @@ void BytecodeWriter::outputModuleInfoBlock(const Module *M) {
unsigned CC = I->getCallingConv()+1; unsigned CC = I->getCallingConv()+1;
unsigned ID = (Slot << 5) | (CC & 15); 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; ID |= 1 << 4;
if (I->getAlignment() || I->hasSection() || (CC & ~15) != 0 || if (I->getAlignment() || I->hasSection() || (CC & ~15) != 0 ||