From a662d16314689a6530c33a9f6c0d628f485301a2 Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Thu, 27 Nov 2014 00:15:28 +0000 Subject: [PATCH] [MCJIT] Remove JITEventListener's anchor until I can determine the right place to put it. This should unbreak the Mips bots. llvm-svn: 222861 --- llvm/include/llvm/ExecutionEngine/JITEventListener.h | 2 -- llvm/lib/ExecutionEngine/ExecutionEngine.cpp | 3 --- 2 files changed, 5 deletions(-) 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) { -- 2.7.4