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
This commit is contained in:
Chris Lattner
2010-01-02 20:07:03 +00:00
parent f994bf00b5
commit 5fadf17709
10 changed files with 6 additions and 926 deletions

View File

@@ -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