aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-27 07:27:19 +0000
committerChris Lattner <sabre@nondot.org>2002-04-27 07:27:19 +0000
commit483e14ee0412a98db1fb0121528d8d621ae3dfdb (patch)
treeac49b8e451a1a70cfebad3a753f5999ac06f4d06 /include/llvm/CodeGen
parent3b743f9fb3dc95aabc54d17cafe1b393b76b943c (diff)
downloadexternal_llvm-483e14ee0412a98db1fb0121528d8d621ae3dfdb.zip
external_llvm-483e14ee0412a98db1fb0121528d8d621ae3dfdb.tar.gz
external_llvm-483e14ee0412a98db1fb0121528d8d621ae3dfdb.tar.bz2
s/Method/Function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2336 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/FunctionLiveVarInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/FunctionLiveVarInfo.h b/include/llvm/CodeGen/FunctionLiveVarInfo.h
index eabae4b..4f7db3f 100644
--- a/include/llvm/CodeGen/FunctionLiveVarInfo.h
+++ b/include/llvm/CodeGen/FunctionLiveVarInfo.h
@@ -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 ----------------------