From: Lang Hames Date: Thu, 27 Nov 2014 00:15:28 +0000 (+0000) Subject: [MCJIT] Remove JITEventListener's anchor until I can determine the right place X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=daed11e66479ea4ae7eff323d70720093db6851f;ds=sidebyside [MCJIT] Remove JITEventListener's anchor until I can determine the right place to put it. This should unbreak the Mips bots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222861 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ExecutionEngine/JITEventListener.h b/include/llvm/ExecutionEngine/JITEventListener.h index c3edec86878..dd52dfbdaf9 100644 --- a/include/llvm/ExecutionEngine/JITEventListener.h +++ b/include/llvm/ExecutionEngine/JITEventListener.h @@ -113,8 +113,6 @@ public: return nullptr; } #endif // USE_OPROFILE -private: - virtual void anchor(); }; } // end namespace llvm. diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp index 4d4cb2a26d8..20d1631a0ce 100644 --- a/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/lib/ExecutionEngine/ExecutionEngine.cpp @@ -48,9 +48,6 @@ ExecutionEngine *(*ExecutionEngine::MCJITCtor)( ExecutionEngine *(*ExecutionEngine::InterpCtor)(std::unique_ptr M, std::string *ErrorStr) =nullptr; -// Anchor for the JITEventListener class. -void JITEventListener::anchor() {} - ExecutionEngine::ExecutionEngine(std::unique_ptr M) : EEState(*this), LazyFunctionCreator(nullptr) {