summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2009-02-15 11:32:31 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2009-02-15 11:32:31 +0000
commit7987e1a2c1fb1ee93b30ce95e82e2ce93cd687b4 (patch)
treeeefb53c2a9c1be6b81150f67991be1b7d96001f9
parent4782b305c2ccc2b2e5a4cad65d7ffd15395d0727 (diff)
downloadllvm-7987e1a2c1fb1ee93b30ce95e82e2ce93cd687b4.tar.gz
llvm-7987e1a2c1fb1ee93b30ce95e82e2ce93cd687b4.tar.bz2
llvm-7987e1a2c1fb1ee93b30ce95e82e2ce93cd687b4.tar.xz
80-column violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64586 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Instructions.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h
index 73e4f85b38..535333a9f5 100644
--- a/include/llvm/Instructions.h
+++ b/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,