| 237 | void Type::setUnsigned(bool Unsigned) { this->Unsigned = Unsigned; } |
| 238 | |
| 239 | void Type::setArrayInfo(std::shared_ptr<ArrayInfo> ArrInfo) { |
| 240 | assert(PtrInfo && "Unexpected Program State"); |
| 241 | this->PtrInfo->setArrayInfo(ArrInfo); |
| 242 | } |
| 243 | |
| 244 | void Type::setPointeeType(std::shared_ptr<Type> PointeeType) { |
| 245 | assert(PtrInfo && "Unexpected Program State"); |