diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 73e4f85b38c..535333a9f5d 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,