s/Method/Function
[oota-llvm.git] / include / llvm / Analysis / LiveVar / FunctionLiveVarInfo.h
index eabae4bddcdd26224e545e2dde7a8bd53733733b..4f7db3fb88f96d0e2af76e8c1a051a18c1a7ae28 100644 (file)
@@ -79,7 +79,7 @@ enum LiveVarDebugLevel_t {
 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 @@ class MethodLiveVarInfo : public FunctionPass {
 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 ----------------------