diff options
author | Lang Hames <lhames@gmail.com> | 2014-11-27 00:15:28 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2014-11-27 00:15:28 +0000 |
commit | a662d16314689a6530c33a9f6c0d628f485301a2 (patch) | |
tree | 57a26e6de3143d177584316c37b9cdfc4ab0acc8 /llvm/lib/ExecutionEngine/ExecutionEngine.cpp | |
parent | a4f0bd7857d549f3354329ec23c1c7cb3ed49f71 (diff) | |
download | bcm5719-llvm-a662d16314689a6530c33a9f6c0d628f485301a2.tar.gz bcm5719-llvm-a662d16314689a6530c33a9f6c0d628f485301a2.zip |
[MCJIT] Remove JITEventListener's anchor until I can determine the right place
to put it. This should unbreak the Mips bots.
llvm-svn: 222861
Diffstat (limited to 'llvm/lib/ExecutionEngine/ExecutionEngine.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/ExecutionEngine.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp index 4d4cb2a26d8..20d1631a0ce 100644 --- a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp @@ -48,9 +48,6 @@ ExecutionEngine *(*ExecutionEngine::MCJITCtor)( ExecutionEngine *(*ExecutionEngine::InterpCtor)(std::unique_ptr<Module> M, std::string *ErrorStr) =nullptr; -// Anchor for the JITEventListener class. -void JITEventListener::anchor() {} - ExecutionEngine::ExecutionEngine(std::unique_ptr<Module> M) : EEState(*this), LazyFunctionCreator(nullptr) { |