| 189 | } |
| 190 | |
| 191 | expr Type::enforceIntOrFloatOrPtrOrVectorType() const { |
| 192 | return enforceScalarOrVectorType( |
| 193 | [&](auto &ty) { return ty.enforceIntOrPtrType() || ty.enforceFloatType();}); |
| 194 | } |
| 195 | |
| 196 | expr Type::enforceIntOrPtrOrVectorType() const { |
| 197 | return enforceScalarOrVectorType( |
no test coverage detected