| 204 | } |
| 205 | |
| 206 | expr Type::enforcePtrOrVectorType() const { |
| 207 | return enforceScalarOrVectorType( |
| 208 | [&](auto &ty) { return ty.enforcePtrType(); }); |
| 209 | } |
| 210 | |
| 211 | const IntType* Type::getAsIntType() const { |
| 212 | return nullptr; |
no test coverage detected