* Rename MethodPass class to FunctionPass
[oota-llvm.git] / include / llvm / Transforms / Instrumentation / TraceValues.h
1 //===- llvm/Transforms/Instrumentation/TraceValues.h - Tracing ---*- C++ -*--=//
2 //
3 // Support for inserting LLVM code to print values at basic block and function
4 // exits.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #ifndef LLVM_TRANSFORMS_INSTRUMENTATION_TRACEVALUES_H
9 #define LLVM_TRANSFORMS_INSTRUMENTATION_TRACEVALUES_H
10
11 class Pass;
12 Pass *createTraceValuesPassForFunction();     // Just trace function entry/exit
13 Pass *createTraceValuesPassForBasicBlocks();  // Trace BB's and methods
14
15 #endif