diff options
author | Ruchira Sasanka <sasanka@students.uiuc.edu> | 2001-11-10 21:21:36 +0000 |
---|---|---|
committer | Ruchira Sasanka <sasanka@students.uiuc.edu> | 2001-11-10 21:21:36 +0000 |
commit | 65480b75afbb856e91cf95d2a38bc784a2dc3d30 (patch) | |
tree | 267dc75a42994ddc7f8bfeb090985b47c98f99ff /lib/CodeGen/RegAlloc/RegClass.cpp | |
parent | ae4bcd7566752af5a15a40026c39a92da3eadec4 (diff) |
Changed code to ignore Phi Nodes in PhyRegAlloc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1253 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAlloc/RegClass.cpp')
-rw-r--r-- | lib/CodeGen/RegAlloc/RegClass.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/RegAlloc/RegClass.cpp b/lib/CodeGen/RegAlloc/RegClass.cpp index 1219147ab2..d0f1c44430 100644 --- a/lib/CodeGen/RegAlloc/RegClass.cpp +++ b/lib/CodeGen/RegAlloc/RegClass.cpp @@ -82,6 +82,8 @@ void RegClass::pushAllIGNodes() // now push NON-constrined ones, if any NeedMoreSpills = ! pushUnconstrainedIGNodes(); + cerr << "\nConstrained IG Node found !@!" << IGNodeSpill->getIndex(); + } while( NeedMoreSpills ); // repeat until we have pushed all } |