diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-04-16 09:21:29 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-04-16 09:21:29 +0000 |
commit | 448ce011ab233129206d50320e3e018b9d80a92e (patch) | |
tree | c717fe232ad3cece46f4075c0256cba232fa5cef /llvm | |
parent | f8d183e8b9ebb5d00b842a3283fd98ed49787a32 (diff) | |
download | bcm5719-llvm-448ce011ab233129206d50320e3e018b9d80a92e.tar.gz bcm5719-llvm-448ce011ab233129206d50320e3e018b9d80a92e.zip |
[Allocator] Nuke to useless functions. The implicit ones are sufficient
here (obviously).
llvm-svn: 206369
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Support/Allocator.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/include/llvm/Support/Allocator.h b/llvm/include/llvm/Support/Allocator.h index 82c200abd06..a2923fdd691 100644 --- a/llvm/include/llvm/Support/Allocator.h +++ b/llvm/include/llvm/Support/Allocator.h @@ -94,9 +94,6 @@ public: class MallocAllocator : public AllocatorBase<MallocAllocator> { public: - MallocAllocator() {} - ~MallocAllocator() {} - void Reset() {} void *Allocate(size_t Size, size_t /*Alignment*/) { return malloc(Size); } |