[llvm-commits] [llvm] r74928 - /llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h

Bill Wendling isanbard at gmail.com
Tue Jul 7 11:21:34 PDT 2009


Author: void
Date: Tue Jul  7 13:21:19 2009
New Revision: 74928

URL: http://llvm.org/viewvc/llvm-project?rev=74928&view=rev
Log:
Remove unused parameter.

Modified:
    llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h

Modified: llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h?rev=74928&r1=74927&r2=74928&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h Tue Jul  7 13:21:19 2009
@@ -282,8 +282,8 @@
   /// the JIT.  See JITEventListener.h for more details.  Does not
   /// take ownership of the argument.  The argument may be NULL, in
   /// which case these functions do nothing.
-  virtual void RegisterJITEventListener(JITEventListener *L) {}
-  virtual void UnregisterJITEventListener(JITEventListener *L) {}
+  virtual void RegisterJITEventListener(JITEventListener *) {}
+  virtual void UnregisterJITEventListener(JITEventListener *) {}
 
   /// DisableLazyCompilation - If called, the JIT will abort if lazy compilation
   /// is ever attempted.





More information about the llvm-commits mailing list