aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/SparcV9/RegAlloc/IGNode.cpp
diff options
context:
space:
mode:
authorRuchira Sasanka <sasanka@students.uiuc.edu>2001-10-19 21:39:31 +0000
committerRuchira Sasanka <sasanka@students.uiuc.edu>2001-10-19 21:39:31 +0000
commit0e62aa6d1425e26702b13692a56a966762dbb0d6 (patch)
tree4696a6ee409a9e2c07b584c8bf0bad03ee3ef718 /lib/Target/SparcV9/RegAlloc/IGNode.cpp
parent33eb292e127a75d51587c390241817d8c355a18b (diff)
Added code to PhyRegAlloc to mark unusable suggested regs
Added initialization to AdjList to IGNode constructor - major bug fix git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@920 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/RegAlloc/IGNode.cpp')
-rw-r--r--lib/Target/SparcV9/RegAlloc/IGNode.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/SparcV9/RegAlloc/IGNode.cpp b/lib/Target/SparcV9/RegAlloc/IGNode.cpp
index 0e8a124cd3..75007a0898 100644
--- a/lib/Target/SparcV9/RegAlloc/IGNode.cpp
+++ b/lib/Target/SparcV9/RegAlloc/IGNode.cpp
@@ -2,6 +2,7 @@
IGNode::IGNode(LiveRange *const PLR, unsigned int Ind): Index(Ind),
+ AdjList(),
ParentLR(PLR)
{
OnStack = false;