diff options
author | Ruchira Sasanka <sasanka@students.uiuc.edu> | 2001-10-28 18:15:12 +0000 |
---|---|---|
committer | Ruchira Sasanka <sasanka@students.uiuc.edu> | 2001-10-28 18:15:12 +0000 |
commit | 20c82b12c909ed643e9b47f93a60fefc46753bcd (patch) | |
tree | 33a79f1f904506d430e191c17e0194511875dfd4 /lib/CodeGen/RegAlloc/RegClass.h | |
parent | 78d63ee3136b74c7ee3eae1e7362d3b642fabf0c (diff) |
Added support for spilling
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@992 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAlloc/RegClass.h')
-rw-r--r-- | lib/CodeGen/RegAlloc/RegClass.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/RegAlloc/RegClass.h b/lib/CodeGen/RegAlloc/RegClass.h index 9f5a46902a..3fb448a5cd 100644 --- a/lib/CodeGen/RegAlloc/RegClass.h +++ b/lib/CodeGen/RegAlloc/RegClass.h @@ -100,6 +100,9 @@ class RegClass { IG.mergeIGNodesOfLRs(LR1, LR2); } + inline bool * getIsColorUsedArr() { return IsColorUsedArr; } + + inline void printIGNodeList() const { cerr << "IG Nodes for Register Class " << RegClassID << ":" << endl; IG.printIGNodeList(); |