| 194 | } |
| 195 | |
| 196 | spv_result_t ValidateBitReverse(ValidationState_t& _, const Instruction* inst) { |
| 197 | const uint32_t base_type = _.GetOperandTypeId(inst, 2); |
| 198 | if (spv_result_t error = ValidateBaseType(_, inst, base_type)) { |
| 199 | return error; |
| 200 | } |
| 201 | return SPV_SUCCESS; |
| 202 | } |
| 203 | |
| 204 | spv_result_t ValidateBitCount(ValidationState_t& _, const Instruction* inst) { |
| 205 | const spv::Op opcode = inst->opcode(); |
no test coverage detected