diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-24 04:29:52 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-24 04:29:52 +0000 |
commit | 50364030ca306aa026ae6fd2358e6190d5abbda8 (patch) | |
tree | 78d9808d97d637704348ac1c77790d9fbd2b3bcc /llvm/lib/CodeGen/RegAlloc/IGNode.h | |
parent | aec3e583487c95c5053a7da1ac623089a845a4b8 (diff) | |
download | bcm5719-llvm-50364030ca306aa026ae6fd2358e6190d5abbda8.tar.gz bcm5719-llvm-50364030ca306aa026ae6fd2358e6190d5abbda8.zip |
Remove some unused methods of class IGNode.
llvm-svn: 8696
Diffstat (limited to 'llvm/lib/CodeGen/RegAlloc/IGNode.h')
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/IGNode.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/lib/CodeGen/RegAlloc/IGNode.h b/llvm/lib/CodeGen/RegAlloc/IGNode.h index 8cb84099941..6743a908306 100644 --- a/llvm/lib/CodeGen/RegAlloc/IGNode.h +++ b/llvm/lib/CodeGen/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; } }; |