| 196 | const Enum *Type::getGlobalDef() const { return GlobalDef.get(); } |
| 197 | |
| 198 | const ArrayInfo *Type::getArrayInfo() const { |
| 199 | assert(PtrInfo && "Unexpected Program State"); |
| 200 | return PtrInfo->getArrayInfo(); |
| 201 | } |
| 202 | |
| 203 | const Type *Type::getPointeeType() const { |
| 204 | if (isPointerType()) { |