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 | 9fcaf328f60d4bcbd394e303b9609a6b66f04085 (patch) | |
tree | b4e9b7019a1a94890be83fb15f8807dfd0bdcdc3 /llvm/lib | |
parent | 3036e1ec03d688b7ffa57f787bd65f65c7bf3188 (diff) | |
download | bcm5719-llvm-9fcaf328f60d4bcbd394e303b9609a6b66f04085.tar.gz bcm5719-llvm-9fcaf328f60d4bcbd394e303b9609a6b66f04085.zip |
LoopDepth calculation is now in CFG namespace
llvm-svn: 1601
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h index 6871b2d28ad..9d9aa53ddf2 100644 --- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/llvm/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 |