| 199 | } |
| 200 | |
| 201 | expr Type::enforceFloatOrVectorType() const { |
| 202 | return enforceScalarOrVectorType( |
| 203 | [&](auto &ty) { return ty.enforceFloatType(); }); |
| 204 | } |
| 205 | |
| 206 | expr Type::enforcePtrOrVectorType() const { |
| 207 | return enforceScalarOrVectorType( |
no test coverage detected