s/Method/Function
llvm-svn: 2336
diff --git a/llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h b/llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h
index eabae4b..4f7db3f 100644
--- a/llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h
+++ b/llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h
@@ -79,7 +79,7 @@
extern cl::Enum<LiveVarDebugLevel_t> DEBUG_LV;
-class MethodLiveVarInfo : public FunctionPass {
+class FunctionLiveVarInfo : public FunctionPass {
// Machine Instr to LiveVarSet Map for providing LVset BEFORE each inst
std::map<const MachineInstr *, const ValueSet *> MInst2LVSetBI;
@@ -103,7 +103,7 @@
public:
static AnalysisID ID; // We are an analysis, we must have an ID
- MethodLiveVarInfo(AnalysisID id = ID) { assert(id == ID); }
+ FunctionLiveVarInfo(AnalysisID id = ID) { assert(id == ID); }
// --------- Implement the FunctionPass interface ----------------------