[MCJIT] Remove JITEventListener's anchor until I can determine the right place
authorLang Hames <lhames@gmail.com>
Thu, 27 Nov 2014 00:15:28 +0000 (00:15 +0000)
committerLang Hames <lhames@gmail.com>
Thu, 27 Nov 2014 00:15:28 +0000 (00:15 +0000)
to put it. This should unbreak the Mips bots.

llvm-svn: 222861

llvm/include/llvm/ExecutionEngine/JITEventListener.h
llvm/lib/ExecutionEngine/ExecutionEngine.cpp

index c3edec8..dd52dfb 100644 (file)
@@ -113,8 +113,6 @@ public:
     return nullptr;
   }
 #endif // USE_OPROFILE
-private:
-  virtual void anchor();
 };
 
 } // end namespace llvm.
index 4d4cb2a..20d1631 100644 (file)
@@ -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) {