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://review.tizen.org/git/?a=commitdiff_plain;h=a662d16314689a6530c33a9f6c0d628f485301a2;p=platform%2Fupstream%2Fllvm.git [MCJIT] Remove JITEventListener's anchor until I can determine the right place to put it. This should unbreak the Mips bots. llvm-svn: 222861 --- diff --git a/llvm/include/llvm/ExecutionEngine/JITEventListener.h b/llvm/include/llvm/ExecutionEngine/JITEventListener.h index c3edec8..dd52dfb 100644 --- a/llvm/include/llvm/ExecutionEngine/JITEventListener.h +++ b/llvm/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/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp index 4d4cb2a..20d1631 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 M, std::string *ErrorStr) =nullptr; -// Anchor for the JITEventListener class. -void JITEventListener::anchor() {} - ExecutionEngine::ExecutionEngine(std::unique_ptr M) : EEState(*this), LazyFunctionCreator(nullptr) {