mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
s/Method/Function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2336 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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 ----------------------
|
||||
|
||||
|
Reference in New Issue
Block a user