diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-02-15 11:32:31 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-02-15 11:32:31 +0000 |
commit | e68b888550c872e9ad25145fa8a0dfecf55fbf0f (patch) | |
tree | 89263f61c95f45ba66f15ef3933131dc653ecb19 | |
parent | b3f27881a9e796ac37a7b8bfc5d44af80a30bca9 (diff) | |
download | bcm5719-llvm-e68b888550c872e9ad25145fa8a0dfecf55fbf0f.tar.gz bcm5719-llvm-e68b888550c872e9ad25145fa8a0dfecf55fbf0f.zip |
80-column violation.
llvm-svn: 64586
-rw-r--r-- | llvm/include/llvm/Instructions.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/Instructions.h b/llvm/include/llvm/Instructions.h index 73e4f85b38c..535333a9f5d 100644 --- a/llvm/include/llvm/Instructions.h +++ b/llvm/include/llvm/Instructions.h @@ -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, |