diff options
Diffstat (limited to 'llvm/lib/Transforms/Utils')
| -rw-r--r-- | llvm/lib/Transforms/Utils/LowerAllocations.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Transforms/Utils/LowerAllocations.cpp b/llvm/lib/Transforms/Utils/LowerAllocations.cpp index 9af47f56ef3..74e7028d127 100644 --- a/llvm/lib/Transforms/Utils/LowerAllocations.cpp +++ b/llvm/lib/Transforms/Utils/LowerAllocations.cpp @@ -89,7 +89,7 @@ bool LowerAllocations::doInitialization(Module &M) {    const Type *BPTy = PointerType::getUnqual(Type::Int8Ty);    // Prototype malloc as "char* malloc(...)", because we don't know in    // doInitialization whether size_t is int or long. -  FunctionType *FT = FunctionType::get(BPTy, std::vector<const Type*>(), true); +  FunctionType *FT = FunctionType::get(BPTy, true);    MallocFunc = M.getOrInsertFunction("malloc", FT);    FreeFunc = M.getOrInsertFunction("free"  , Type::VoidTy, BPTy, (Type *)0);    return true; | 

