summaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine/JITEventListener.h
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2009-10-21 00:43:48 +0000
committerJeffrey Yasskin <jyasskin@google.com>2009-10-21 00:43:48 +0000
commit4cdc5bb70759f3ac5b2d2810a9f74a2b1d262c9a (patch)
tree75d8ec0b42d77efde9b6337dd8ead843839f9bc7 /include/llvm/ExecutionEngine/JITEventListener.h
parent12ddf139ce9579772effc5d05d0e2822173ebb10 (diff)
downloadllvm-4cdc5bb70759f3ac5b2d2810a9f74a2b1d262c9a.tar.gz
llvm-4cdc5bb70759f3ac5b2d2810a9f74a2b1d262c9a.tar.bz2
llvm-4cdc5bb70759f3ac5b2d2810a9f74a2b1d262c9a.tar.xz
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/JITEventListener.h')
-rw-r--r--include/llvm/ExecutionEngine/JITEventListener.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/ExecutionEngine/JITEventListener.h b/include/llvm/ExecutionEngine/JITEventListener.h
index 8d3a1d77f0..e895e7399b 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.