| 934 | } |
| 935 | |
| 936 | spv::Op ValidationState_t::GetIdOpcode(uint32_t id) const { |
| 937 | const Instruction* inst = FindDef(id); |
| 938 | return inst ? inst->opcode() : spv::Op::OpNop; |
| 939 | } |
| 940 | |
| 941 | uint32_t ValidationState_t::GetComponentType(uint32_t id) const { |
| 942 | const Instruction* inst = FindDef(id); |
no test coverage detected