aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine/ExecutionEngine.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-07-07 18:21:19 +0000
committerBill Wendling <isanbard@gmail.com>2009-07-07 18:21:19 +0000
commitdf225c0253aa987830fbd3dfcb5d9f8f7f973336 (patch)
tree1a1be4f9714dfddb905c08671b535aab087f0f99 /include/llvm/ExecutionEngine/ExecutionEngine.h
parenta9b7d60d67b054541cb8507d697eb94beee32f18 (diff)
Remove unused parameter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74928 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ExecutionEngine/ExecutionEngine.h')
-rw-r--r--include/llvm/ExecutionEngine/ExecutionEngine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h
index 613adb574e..84cfd23677 100644
--- a/include/llvm/ExecutionEngine/ExecutionEngine.h
+++ b/include/llvm/ExecutionEngine/ExecutionEngine.h
@@ -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.