Remove unused parameter.
authorBill Wendling <isanbard@gmail.com>
Tue, 7 Jul 2009 18:21:19 +0000 (18:21 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 7 Jul 2009 18:21:19 +0000 (18:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74928 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ExecutionEngine/ExecutionEngine.h

index 613adb574e3ca0d566229d4e0fe26713e5d6e5cd..84cfd23677435f6a11537d6e99c0743287ed6997 100644 (file)
@@ -282,8 +282,8 @@ public:
   /// 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.