Rename Method to Function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1957 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/InstrSched/SchedGraph.h b/lib/CodeGen/InstrSched/SchedGraph.h
index fb6087c..99e2057 100644
--- a/lib/CodeGen/InstrSched/SchedGraph.h
+++ b/lib/CodeGen/InstrSched/SchedGraph.h
@@ -28,7 +28,7 @@
class Instruction;
class TerminatorInst;
class BasicBlock;
-class Method;
+class Function;
class TargetMachine;
class SchedGraphEdge;
class SchedGraphNode;
@@ -339,7 +339,7 @@
private std::hash_map<const BasicBlock*, SchedGraph*>
{
private:
- const Method* method;
+ const Function* method;
public:
typedef std::hash_map<const BasicBlock*, SchedGraph*> map_base;
@@ -347,7 +347,7 @@
using map_base::const_iterator;
public:
- /*ctor*/ SchedGraphSet (const Method* _method,
+ /*ctor*/ SchedGraphSet (const Function * function,
const TargetMachine& target);
/*dtor*/ ~SchedGraphSet ();
@@ -379,7 +379,7 @@
//
// Graph builder
//
- void buildGraphsForMethod (const Method *method,
+ void buildGraphsForMethod (const Function *F,
const TargetMachine& target);
};