| 194 | } |
| 195 | |
| 196 | expr Type::enforceIntOrPtrOrVectorType() const { |
| 197 | return enforceScalarOrVectorType( |
| 198 | [&](auto &ty) { return ty.enforceIntOrPtrType(); }); |
| 199 | } |
| 200 | |
| 201 | expr Type::enforceFloatOrVectorType() const { |
| 202 | return enforceScalarOrVectorType( |
no test coverage detected