diff options
-rw-r--r-- | include/llvm/DerivedTypes.h | 7 | ||||
-rw-r--r-- | lib/VMCore/Type.cpp | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h index 2c3cf2b808..25b5978914 100644 --- a/include/llvm/DerivedTypes.h +++ b/include/llvm/DerivedTypes.h @@ -440,11 +440,10 @@ public: }; -/// PointerType - Class to represent pointers +/// PointerType - Class to represent pointers. /// class PointerType : public SequentialType { friend class TypeMap<PointerValType, PointerType>; - unsigned AddressSpace; PointerType(const PointerType &); // Do not implement const PointerType &operator=(const PointerType &); // Do not implement @@ -465,7 +464,7 @@ public: static bool isValidElementType(const Type *ElemTy); /// @brief Return the address space of the Pointer type. - inline unsigned getAddressSpace() const { return AddressSpace; } + inline unsigned getAddressSpace() const { return getSubclassData(); } // Implement the AbstractTypeUser interface. virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy); @@ -479,7 +478,7 @@ public: }; -/// OpaqueType - Class to represent abstract types +/// OpaqueType - Class to represent opaque types. /// class OpaqueType : public DerivedType { friend class LLVMContextImpl; diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index 54fc5c599b..ae45d9aed4 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -533,7 +533,7 @@ VectorType::VectorType(const Type *ElType, unsigned NumEl) PointerType::PointerType(const Type *E, unsigned AddrSpace) : SequentialType(PointerTyID, E) { - AddressSpace = AddrSpace; + setSubclassData(AddrSpace); // Calculate whether or not this type is abstract setAbstract(E->isAbstract()); } |