aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/SparcV9/RegAlloc
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-09-24 04:29:52 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-09-24 04:29:52 +0000
commiteefaeb84f1299c2ea2d1b06537880f1683e2161d (patch)
tree182d7ddfaee8845944ed8c2b9c0804f6c1acedd2 /lib/Target/SparcV9/RegAlloc
parent02dea4b355f3262a52dd9df0d24e59beb1bc6ec4 (diff)
downloadexternal_llvm-eefaeb84f1299c2ea2d1b06537880f1683e2161d.zip
external_llvm-eefaeb84f1299c2ea2d1b06537880f1683e2161d.tar.gz
external_llvm-eefaeb84f1299c2ea2d1b06537880f1683e2161d.tar.bz2
Remove some unused methods of class IGNode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8696 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/RegAlloc')
-rw-r--r--lib/Target/SparcV9/RegAlloc/IGNode.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/Target/SparcV9/RegAlloc/IGNode.h b/lib/Target/SparcV9/RegAlloc/IGNode.h
index 8cb8409..6743a90 100644
--- a/lib/Target/SparcV9/RegAlloc/IGNode.h
+++ b/lib/Target/SparcV9/RegAlloc/IGNode.h
@@ -95,29 +95,16 @@ public:
//
inline void decCurDegree() { assert(CurDegree > 0); --CurDegree; }
-
// The following methods call the methods in ParentLR
// They are added to this class for convenience
// If many of these are called within a single scope,
// consider calling the methods directly on LR
-
- inline void setRegClass(RegClass *RC) { ParentLR->setRegClass(RC); }
-
- inline RegClass *getRegClass() const { return ParentLR->getRegClass(); }
-
inline bool hasColor() const { return ParentLR->hasColor(); }
inline unsigned int getColor() const { return ParentLR->getColor(); }
inline void setColor(unsigned Col) { ParentLR->setColor(Col); }
- inline void markForSpill() { ParentLR->markForSpill(); }
-
- inline void markForSaveAcrossCalls() { ParentLR->markForSaveAcrossCalls(); }
-
- inline unsigned int isCallInterference() const
- { return ParentLR->isCallInterference(); }
-
inline LiveRange *getParentLR() const { return ParentLR; }
};