diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-14 20:10:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-14 20:10:26 +0000 |
commit | 47fb34c00ae5705e76046926ba85cde19c7ba9be (patch) | |
tree | f75fc543dc078770ef435c3269875be43f91ee54 /llvm | |
parent | 91393ee84f8e61887b277f7d878105191d59f3c0 (diff) | |
download | bcm5719-llvm-47fb34c00ae5705e76046926ba85cde19c7ba9be.tar.gz bcm5719-llvm-47fb34c00ae5705e76046926ba85cde19c7ba9be.zip |
Make PATypeHolder and friends return non-const pointers to the types they
hold. Because types are basically immutable anyway, they should not be
referenced as "const Type*" everywhere. Just "Type*" should suffice!
llvm-svn: 14824
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/AbstractTypeUser.h | 18 | ||||
-rw-r--r-- | llvm/include/llvm/Type.h | 4 |
2 files changed, 11 insertions, 11 deletions
diff --git a/llvm/include/llvm/AbstractTypeUser.h b/llvm/include/llvm/AbstractTypeUser.h index b936b455540..a06252dc73d 100644 --- a/llvm/include/llvm/AbstractTypeUser.h +++ b/llvm/include/llvm/AbstractTypeUser.h @@ -93,17 +93,17 @@ public: inline ~PATypeHandle() { removeUser(); } // Automatic casting operator so that the handle may be used naturally - inline operator const Type *() const { return Ty; } - inline const Type *get() const { return Ty; } + inline operator Type *() const { return const_cast<Type*>(Ty); } + inline Type *get() const { return const_cast<Type*>(Ty); } // operator= - Allow assignment to handle - inline const Type *operator=(const Type *ty) { + inline Type *operator=(const Type *ty) { if (Ty != ty) { // Ensure we don't accidentally drop last ref to Ty removeUser(); Ty = ty; addUser(); } - return Ty; + return get(); } // operator= - Allow assignment to handle @@ -145,14 +145,14 @@ public: ~PATypeHolder() { dropRef(); } - operator const Type *() const { return get(); } - const Type *get() const; + operator Type *() const { return get(); } + Type *get() const; // operator-> - Allow user to dereference handle naturally... - const Type *operator->() const { return get(); } + Type *operator->() const { return get(); } // operator= - Allow assignment to handle - const Type *operator=(const Type *ty) { + Type *operator=(const Type *ty) { if (Ty != ty) { // Don't accidentally drop last ref to Ty. dropRef(); Ty = ty; @@ -160,7 +160,7 @@ public: } return get(); } - const Type *operator=(const PATypeHolder &H) { + Type *operator=(const PATypeHolder &H) { return operator=(H.Ty); } diff --git a/llvm/include/llvm/Type.h b/llvm/include/llvm/Type.h index c6a95b5dadf..fab69aa7b64 100644 --- a/llvm/include/llvm/Type.h +++ b/llvm/include/llvm/Type.h @@ -347,9 +347,9 @@ inline void PATypeHolder::dropRef() { /// type we are pointing to is forwarding to a new type. If so, we drop our /// reference to the type. /// -inline const Type* PATypeHolder::get() const { +inline Type* PATypeHolder::get() const { const Type *NewTy = Ty->getForwardedType(); - if (!NewTy) return Ty; + if (!NewTy) return const_cast<Type*>(Ty); return *const_cast<PATypeHolder*>(this) = NewTy; } |