aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ExecutionEngine/RuntimeDyld.h
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2011-04-05 23:54:31 +0000
committerChandler Carruth <chandlerc@gmail.com>2011-04-05 23:54:31 +0000
commit53c5e7b2e7e36d70bd943cb2d576121435bd5b3f (patch)
treee56bcb862cb002b88cdbda6a01660693627da5ae /include/llvm/ExecutionEngine/RuntimeDyld.h
parent71d9e65ee71712b965c79739e63de94fbb8078ad (diff)
downloadexternal_llvm-53c5e7b2e7e36d70bd943cb2d576121435bd5b3f.zip
external_llvm-53c5e7b2e7e36d70bd943cb2d576121435bd5b3f.tar.gz
external_llvm-53c5e7b2e7e36d70bd943cb2d576121435bd5b3f.tar.bz2
Make the virtual destructor out-of-line so we have a key function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128964 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ExecutionEngine/RuntimeDyld.h')
-rw-r--r--include/llvm/ExecutionEngine/RuntimeDyld.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/RuntimeDyld.h b/include/llvm/ExecutionEngine/RuntimeDyld.h
index 5d6d452..6e18c7c 100644
--- a/include/llvm/ExecutionEngine/RuntimeDyld.h
+++ b/include/llvm/ExecutionEngine/RuntimeDyld.h
@@ -33,7 +33,7 @@ class RTDyldMemoryManager {
void operator=(const RTDyldMemoryManager&); // DO NOT IMPLEMENT
public:
RTDyldMemoryManager() {}
- virtual ~RTDyldMemoryManager() {}
+ virtual ~RTDyldMemoryManager();
// Allocate ActualSize bytes, or more, for the named function. Return
// a pointer to the allocated memory and update Size to reflect how much