summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/Instrumentation.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-02 20:07:03 +0000
committerChris Lattner <sabre@nondot.org>2010-01-02 20:07:03 +0000
commit5fadf1770901ae9ce231d9a68cb68da7bc4f2a91 (patch)
tree24d49e2d64e327e3eaa73982073ce065e6459b59 /include/llvm/Transforms/Instrumentation.h
parentf994bf00b5d1b0b74e70cfcf65414b8aa401d3ea (diff)
downloadllvm-5fadf1770901ae9ce231d9a68cb68da7bc4f2a91.tar.gz
llvm-5fadf1770901ae9ce231d9a68cb68da7bc4f2a91.tar.bz2
llvm-5fadf1770901ae9ce231d9a68cb68da7bc4f2a91.tar.xz
remove the random sampling framework, which is not maintained anymore.
If there is interest, it can be resurrected from SVN. PR4912. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92422 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Instrumentation.h')
-rw-r--r--include/llvm/Transforms/Instrumentation.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/llvm/Transforms/Instrumentation.h b/include/llvm/Transforms/Instrumentation.h
index 9794ffd429..9c579ac761 100644
--- a/include/llvm/Transforms/Instrumentation.h
+++ b/include/llvm/Transforms/Instrumentation.h
@@ -19,22 +19,12 @@ namespace llvm {
class ModulePass;
class FunctionPass;
-// Insert function profiling instrumentation
-ModulePass *createFunctionProfilerPass();
-
-// Insert block profiling instrumentation
-ModulePass *createBlockProfilerPass();
-
// Insert edge profiling instrumentation
ModulePass *createEdgeProfilerPass();
// Insert optimal edge profiling instrumentation
ModulePass *createOptimalEdgeProfilerPass();
-// Random Sampling Profiling Framework
-ModulePass* createNullProfilerRSPass();
-FunctionPass* createRSProfilingPass();
-
} // End llvm namespace
#endif