| 242 | } |
| 243 | |
| 244 | void Type::setPointeeType(std::shared_ptr<Type> PointeeType) { |
| 245 | assert(PtrInfo && "Unexpected Program State"); |
| 246 | this->PtrInfo->setPointeeType(PointeeType); |
| 247 | } |
| 248 | |
| 249 | void Type::setPtrKind(Type::PtrKind Kind) { |
| 250 | assert(PtrInfo && "Unexpected Program State"); |
no outgoing calls