80-column violation.
authorMikhail Glushenkov <foldr@codedgers.com>
Sun, 15 Feb 2009 11:32:31 +0000 (11:32 +0000)
committerMikhail Glushenkov <foldr@codedgers.com>
Sun, 15 Feb 2009 11:32:31 +0000 (11:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64586 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Instructions.h

index 73e4f85b38c394e1ae1c7fc79fd1623f3d873c3d..535333a9f5d0e680713228da173a815d09baae3b 100644 (file)
@@ -108,7 +108,8 @@ public:
   MallocInst(const Type *Ty, const std::string &NameStr,
              Instruction *InsertBefore = 0)
     : AllocationInst(Ty, 0, Malloc, 0, NameStr, InsertBefore) {}
-  MallocInst(const Type *Ty, const std::string &NameStr, BasicBlock *InsertAtEnd)
+  MallocInst(const Type *Ty, const std::string &NameStr,
+             BasicBlock *InsertAtEnd)
     : AllocationInst(Ty, 0, Malloc, 0, NameStr, InsertAtEnd) {}
 
   MallocInst(const Type *Ty, Value *ArraySize, unsigned Align,