| 201 | } |
| 202 | |
| 203 | const Type *Type::getPointeeType() const { |
| 204 | if (isPointerType()) { |
| 205 | assert(PtrInfo && "Unexpected Program State"); |
| 206 | return PtrInfo->getPointeeType(); |
| 207 | } |
| 208 | return this; |
| 209 | } |
| 210 | |
| 211 | bool Type::isBoolean() const { return Boolean; } |
| 212 |