From: Reid Spencer Date: Mon, 16 Apr 2007 23:32:28 +0000 (+0000) Subject: Make long line fit in 80 cols. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e8501ab4929f6d9ddfdddaae2a75ff3c7d6c0211;p=oota-llvm.git Make long line fit in 80 cols. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36183 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp index c48bb223a80..4688e69ef2f 100644 --- a/lib/Bytecode/Writer/Writer.cpp +++ b/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 ||