diff options
author | Chris Lattner <sabre@nondot.org> | 2002-01-31 00:41:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-01-31 00:41:13 +0000 |
commit | 92a12d5c6bf7df4f023000719cdb5c9a31542716 (patch) | |
tree | 4e824f38cf1e470a139b0f2df9d7b2a3a86e2230 | |
parent | 9261f0e02b867be5825924a09569f19705cfe2eb (diff) | |
download | external_llvm-92a12d5c6bf7df4f023000719cdb5c9a31542716.zip external_llvm-92a12d5c6bf7df4f023000719cdb5c9a31542716.tar.gz external_llvm-92a12d5c6bf7df4f023000719cdb5c9a31542716.tar.bz2 |
LoopDepth calculation is now in CFG namespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1601 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/RegAlloc/PhyRegAlloc.h | 2 | ||||
-rw-r--r-- | lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/lib/CodeGen/RegAlloc/PhyRegAlloc.h index 6871b2d..9d9aa53 100644 --- a/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/lib/CodeGen/RegAlloc/PhyRegAlloc.h @@ -84,7 +84,7 @@ class PhyRegAlloc: public NonCopyable AddedInstrMapType AddedInstrMap; // to store instrns added in this phase - LoopDepthCalculator LoopDepthCalc; // to calculate loop depths + cfg::LoopDepthCalculator LoopDepthCalc; // to calculate loop depths ReservedColorListType ResColList; // A set of reserved regs if desired. // currently not used diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h index 6871b2d..9d9aa53 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h +++ b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h @@ -84,7 +84,7 @@ class PhyRegAlloc: public NonCopyable AddedInstrMapType AddedInstrMap; // to store instrns added in this phase - LoopDepthCalculator LoopDepthCalc; // to calculate loop depths + cfg::LoopDepthCalculator LoopDepthCalc; // to calculate loop depths ReservedColorListType ResColList; // A set of reserved regs if desired. // currently not used |