[llvm-commits] CVS: llvm/include/llvm/CodeGen/PhyRegAlloc.h

Chris Lattner lattner at cs.uiuc.edu
Mon Oct 28 13:44:00 PST 2002


Changes in directory llvm/include/llvm/CodeGen:

PhyRegAlloc.h updated: 1.37 -> 1.38

---
Log message:

Rename some regalloc fields


---
Diffs of the changes:

Index: llvm/include/llvm/CodeGen/PhyRegAlloc.h
diff -u llvm/include/llvm/CodeGen/PhyRegAlloc.h:1.37 llvm/include/llvm/CodeGen/PhyRegAlloc.h:1.38
--- llvm/include/llvm/CodeGen/PhyRegAlloc.h:1.37	Sun Oct 27 18:25:36 2002
+++ llvm/include/llvm/CodeGen/PhyRegAlloc.h	Mon Oct 28 13:43:23 2002
@@ -51,8 +51,8 @@
 //----------------------------------------------------------------------------
 
 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 @@
 
   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)





More information about the llvm-commits mailing list