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 | b1e39b5a272f15d9f73e24668e48b326f8234061 (patch) | |
tree | 77b845fbad205080e7f7a34c17f9c02ef67931f9 | |
parent | e3aa50d6b7c8e33c62e1e4a7788b535db93ac97b (diff) | |
download | bcm5719-llvm-b1e39b5a272f15d9f73e24668e48b326f8234061.tar.gz bcm5719-llvm-b1e39b5a272f15d9f73e24668e48b326f8234061.zip |
Rename some regalloc fields
llvm-svn: 4346
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h index ca517138b75..12f0bf05ebf 100644 --- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/llvm/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) |