diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-28 19:43:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-28 19:43:23 +0000 |
commit | ccdf23ebbb4755f6e9c935618c1fa49f31d5c58c (patch) | |
tree | b42a87cd7c47ee4b4c973711d5963878e0effe84 | |
parent | 4e3be2f728c01366a941ffdfd253458787f3481c (diff) |
Rename some regalloc fields
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4346 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/RegAlloc/PhyRegAlloc.h | 8 | ||||
-rw-r--r-- | lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/lib/CodeGen/RegAlloc/PhyRegAlloc.h index ca517138b7..12f0bf05eb 100644 --- a/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/lib/CodeGen/RegAlloc/PhyRegAlloc.h @@ -51,8 +51,8 @@ class LoopInfo; //---------------------------------------------------------------------------- struct AddedInstrns { - std::vector<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst - std::vector<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst + std::vector<MachineInstr*> InstrnsBefore;//Insts added BEFORE an existing inst + std::vector<MachineInstr*> InstrnsAfter; //Insts added AFTER an existing inst }; typedef std::map<const MachineInstr *, AddedInstrns> AddedInstrMapType; @@ -70,8 +70,8 @@ class PhyRegAlloc: public NonCopyable { std::vector<RegClass *> RegClassList; // vector of register classes const TargetMachine &TM; // target machine - const Function *Meth; // name of the function we work on - MachineFunction &mcInfo; // descriptor for method's native code + const Function *Fn; // name of the function we work on + MachineFunction &MF; // descriptor for method's native code FunctionLiveVarInfo *const LVI; // LV information for this method // (already computed for BBs) LiveRangeInfo LRI; // LR info (will be computed) diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h index ca517138b7..12f0bf05eb 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h +++ b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h @@ -51,8 +51,8 @@ class LoopInfo; //---------------------------------------------------------------------------- struct AddedInstrns { - std::vector<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst - std::vector<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst + std::vector<MachineInstr*> InstrnsBefore;//Insts added BEFORE an existing inst + std::vector<MachineInstr*> InstrnsAfter; //Insts added AFTER an existing inst }; typedef std::map<const MachineInstr *, AddedInstrns> AddedInstrMapType; @@ -70,8 +70,8 @@ class PhyRegAlloc: public NonCopyable { std::vector<RegClass *> RegClassList; // vector of register classes const TargetMachine &TM; // target machine - const Function *Meth; // name of the function we work on - MachineFunction &mcInfo; // descriptor for method's native code + const Function *Fn; // name of the function we work on + MachineFunction &MF; // descriptor for method's native code FunctionLiveVarInfo *const LVI; // LV information for this method // (already computed for BBs) LiveRangeInfo LRI; // LR info (will be computed) |