Remove unused parameter.

llvm-svn: 74928
This commit is contained in:
Bill Wendling 2009-07-07 18:21:19 +00:00
parent 3612256e2e
commit e446053099
1 changed files with 2 additions and 2 deletions

View 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.