diff options
-rw-r--r-- | llvm/lib/ExecutionEngine/CMakeLists.txt | 1 | ||||
-rw-r--r-- | llvm/lib/ExecutionEngine/JITEventListener.cpp | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/CMakeLists.txt b/llvm/lib/ExecutionEngine/CMakeLists.txt index 208495c8847..fae5bb900b9 100644 --- a/llvm/lib/ExecutionEngine/CMakeLists.txt +++ b/llvm/lib/ExecutionEngine/CMakeLists.txt @@ -3,6 +3,7 @@ add_llvm_library(LLVMExecutionEngine ExecutionEngine.cpp ExecutionEngineBindings.cpp + JITEventListener.cpp RTDyldMemoryManager.cpp TargetSelect.cpp ) diff --git a/llvm/lib/ExecutionEngine/JITEventListener.cpp b/llvm/lib/ExecutionEngine/JITEventListener.cpp new file mode 100644 index 00000000000..2a6a0070d97 --- /dev/null +++ b/llvm/lib/ExecutionEngine/JITEventListener.cpp @@ -0,0 +1,15 @@ +//===-- JITEventListener.cpp ----------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "llvm/ExecutionEngine/JITEventListener.h" + +using namespace llvm; + +// Out-of-line definition of the virtual destructor as this is the key function. +JITEventListener::~JITEventListener() {} |