diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-29 03:13:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-29 03:13:05 +0000 |
commit | f9781b59abf250ea97a90f263430ce4ff40f2b65 (patch) | |
tree | 5ef47bdbef95f573d6ffe211dbe6cff1bc5e6659 /llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h | |
parent | 42d59219c7c9a338c8a70bc2c37b5a5117ea1a29 (diff) | |
download | bcm5719-llvm-f9781b59abf250ea97a90f263430ce4ff40f2b65.tar.gz bcm5719-llvm-f9781b59abf250ea97a90f263430ce4ff40f2b65.zip |
More renamings of Target/Machine*Info to Target/Target*Info
llvm-svn: 5204
Diffstat (limited to 'llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h')
-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 c84ca035211..ea4f562009d 100644 --- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h @@ -7,9 +7,9 @@ ===== * RegisterClasses: Each RegClass accepts a - MachineRegClass which contains machine specific info about that register + TargetRegClass which contains machine specific info about that register class. The code in the RegClass is machine independent and they use - access functions in the MachineRegClass object passed into it to get + access functions in the TargetRegClass object passed into it to get machine specific info. * Machine dependent work: All parts of the register coloring algorithm @@ -24,7 +24,7 @@ #include <map> class MachineFunction; -class MachineRegInfo; +class TargetRegInfo; class FunctionLiveVarInfo; class MachineInstr; class LoopInfo; @@ -57,7 +57,7 @@ class PhyRegAlloc: public NonCopyable { FunctionLiveVarInfo *const LVI; // LV information for this method // (already computed for BBs) LiveRangeInfo LRI; // LR info (will be computed) - const MachineRegInfo &MRI; // Machine Register information + const TargetRegInfo &MRI; // Machine Register information const unsigned NumOfRegClasses; // recorded here for efficiency |