Make long line fit in 80 cols.
authorReid Spencer <rspencer@reidspencer.com>
Mon, 16 Apr 2007 23:32:28 +0000 (23:32 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 16 Apr 2007 23:32:28 +0000 (23:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36183 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Writer/Writer.cpp

index c48bb223a8066c9bfb1099b4d41f1b813a5f615a..4688e69ef2fba469f5778e426b43ed8256c5bfa1 100644 (file)
@@ -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 ||