[MCJIT] Remove JITEventListener::NotifyFunctionEmitted - this method is dead
[oota-llvm.git] / include / llvm / ExecutionEngine / JITEventListener.h
index 99fe36c6b5f6b8b166eca0ea86f899a730dd889c..02350b6a950ce8f6829690521482a5a3fda4dbeb 100644 (file)
@@ -59,13 +59,6 @@ public:
   JITEventListener() {}
   virtual ~JITEventListener();
 
-  /// NotifyFunctionEmitted - Called after a function has been successfully
-  /// emitted to memory.  The function still has its MachineFunction attached,
-  /// if you should happen to need that.
-  virtual void NotifyFunctionEmitted(const Function &,
-                                     void *, size_t,
-                                     const EmittedFunctionDetails &) {}
-
   /// NotifyFreeingMachineCode - Called from freeMachineCodeForFunction(), after
   /// the global mapping is removed, but before the machine code is returned to
   /// the allocator.