* Rename MethodPass class to FunctionPass
[oota-llvm.git] / include / llvm / Transforms / Instrumentation / TraceValues.h
index 0519e1d67cb0a2d4fe4c0b99d0918f979825b473..8afed48e29d9707137602d71fb043f33e7cc3431 100644 (file)
@@ -1,6 +1,6 @@
 //===- llvm/Transforms/Instrumentation/TraceValues.h - Tracing ---*- C++ -*--=//
 //
-// Support for inserting LLVM code to print values at basic block and method
+// Support for inserting LLVM code to print values at basic block and function
 // exits.
 //
 //===----------------------------------------------------------------------===//
@@ -9,7 +9,7 @@
 #define LLVM_TRANSFORMS_INSTRUMENTATION_TRACEVALUES_H
 
 class Pass;
-Pass *createTraceValuesPassForMethod();       // Just trace methods
+Pass *createTraceValuesPassForFunction();     // Just trace function entry/exit
 Pass *createTraceValuesPassForBasicBlocks();  // Trace BB's and methods
 
 #endif