Added two minor methods.

llvm-svn: 1187
This commit is contained in:
Vikram S. Adve 2001-11-08 04:49:52 +00:00
parent d9f8598104
commit bdbb802c2f
2 changed files with 8 additions and 3 deletions

View File

@ -131,12 +131,15 @@ class LiveRange : public ValueSet
inline IGNode * getUserIGNode() const
{ return UserIGNode; } // NULL if the user is not allocated
inline Type::PrimitiveID getTypeID() const {
inline const Type* getType() const {
const Value *val = *begin();
assert(val && "Can't find type - Live range is empty" );
return (val->getType())->getPrimitiveID();
return val->getType();
}
inline Type::PrimitiveID getTypeID() const {
return this->getType()->getPrimitiveID();
}
inline void setSuggestedColor(int Col) {
//assert( (SuggestedColor == -1) && "Changing an already suggested color");

View File

@ -75,6 +75,8 @@ public:
void constructLiveRanges();
const Method* getMethod() { return Meth; }
inline void addLRToMap(const Value *Val, LiveRange *LR) {
assert( Val && LR && "Val/LR is NULL!\n");
assert( (! LiveRangeMap[ Val ]) && "LR already set in map");