| 198 | } |
| 199 | |
| 200 | bool ILType::IsIntVector() |
| 201 | { |
| 202 | auto basicType = dynamic_cast<ILBasicType*>(this); |
| 203 | if (basicType) |
| 204 | return basicType->Type == ILBaseType::Int2 || basicType->Type == ILBaseType::Int3 || basicType->Type == ILBaseType::Int4; |
| 205 | else |
| 206 | return false; |
| 207 | } |
| 208 | |
| 209 | bool ILType::IsUIntVector() |
| 210 | { |
no outgoing calls
no test coverage detected