mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-16 16:16:45 +00:00
[JIT] Add an out-of-line definition for the virtual destructor in
JITEventListener. This used to be in the old JIT (last line of the file) and everyone just "happened" to pick it up from there. =/ Doh. llvm-svn: 217073
This commit is contained in:
parent
a8475b5f1d
commit
10c5b14ec4
@ -3,6 +3,7 @@
|
||||
add_llvm_library(LLVMExecutionEngine
|
||||
ExecutionEngine.cpp
|
||||
ExecutionEngineBindings.cpp
|
||||
JITEventListener.cpp
|
||||
RTDyldMemoryManager.cpp
|
||||
TargetSelect.cpp
|
||||
)
|
||||
|
15
lib/ExecutionEngine/JITEventListener.cpp
Normal file
15
lib/ExecutionEngine/JITEventListener.cpp
Normal file
@ -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() {}
|
Loading…
Reference in New Issue
Block a user