diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-27 01:06:51 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-27 01:06:51 +0000 |
commit | e3e08e0f9093ed28f75e18d050ee60c147f95512 (patch) | |
tree | 3ef0c3014567a8d117c3fd1abd0b3d8def2bc063 /llvm/lib/ExecutionEngine | |
parent | 64fd20d2436615117d518364432023cae68e8471 (diff) | |
download | bcm5719-llvm-e3e08e0f9093ed28f75e18d050ee60c147f95512.tar.gz bcm5719-llvm-e3e08e0f9093ed28f75e18d050ee60c147f95512.zip |
Fix OProfileJITEventListener after r85182.
llvm-svn: 85192
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp b/llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp index d05ab4d5559..b45c71f4fd7 100644 --- a/llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp +++ b/llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp @@ -43,7 +43,7 @@ public: virtual void NotifyFunctionEmitted(const Function &F, void *FnStart, size_t FnSize, const EmittedFunctionDetails &Details); - virtual void NotifyFreeingMachineCode(const Function &F, void *OldPtr); + virtual void NotifyFreeingMachineCode(void *OldPtr); }; OProfileJITEventListener::OProfileJITEventListener() |