diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-21 00:43:48 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-21 00:43:48 +0000 |
commit | 4cdc5bb70759f3ac5b2d2810a9f74a2b1d262c9a (patch) | |
tree | 75d8ec0b42d77efde9b6337dd8ead843839f9bc7 /include/llvm/ExecutionEngine | |
parent | 12ddf139ce9579772effc5d05d0e2822173ebb10 (diff) | |
download | external_llvm-4cdc5bb70759f3ac5b2d2810a9f74a2b1d262c9a.zip external_llvm-4cdc5bb70759f3ac5b2d2810a9f74a2b1d262c9a.tar.gz external_llvm-4cdc5bb70759f3ac5b2d2810a9f74a2b1d262c9a.tar.bz2 |
Delete the MacOSJITEventListener per echristo's request. It was disabled by
default and didn't work anyway.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84720 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ExecutionEngine')
-rw-r--r-- | include/llvm/ExecutionEngine/JITEventListener.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/ExecutionEngine/JITEventListener.h b/include/llvm/ExecutionEngine/JITEventListener.h index 8d3a1d7..e895e73 100644 --- a/include/llvm/ExecutionEngine/JITEventListener.h +++ b/include/llvm/ExecutionEngine/JITEventListener.h @@ -67,8 +67,7 @@ public: virtual void NotifyFreeingMachineCode(const Function &F, void *OldPtr) {} }; -// These return NULL if support isn't available. -JITEventListener *createMacOSJITEventListener(); +// This returns NULL if support isn't available. JITEventListener *createOProfileJITEventListener(); } // end namespace llvm. |