| 324 | |
| 325 | |
| 326 | class ArrayType final : public AggregateType { |
| 327 | public: |
| 328 | ArrayType(std::string &&name) : AggregateType(std::move(name)) {} |
| 329 | ArrayType(std::string &&name, unsigned elements, Type &elementTy, |
| 330 | Type *paddingTy = nullptr); |
| 331 | |
| 332 | bool isArrayType() const override; |
| 333 | void print(std::ostream &os) const override; |
| 334 | }; |
| 335 | |
| 336 | |
| 337 | class VectorType final : public AggregateType { |
nothing calls this directly
no outgoing calls
no test coverage detected