| 42 | } |
| 43 | |
| 44 | bool IsGraph(ValidationState_t& _, uint32_t id) { |
| 45 | auto def = _.FindDef(id); |
| 46 | if (!def || def->opcode() != spv::Op::OpGraphARM) { |
| 47 | return false; |
| 48 | } |
| 49 | return true; |
| 50 | } |
| 51 | |
| 52 | bool IsGraphType(ValidationState_t& _, uint32_t id) { |
| 53 | auto def = _.FindDef(id); |
no test coverage detected