| 164 | } |
| 165 | |
| 166 | bool spvOpcodeIsConstantOrUndef(const spv::Op opcode) { |
| 167 | return opcode == spv::Op::OpUndef || spvOpcodeIsConstant(opcode); |
| 168 | } |
| 169 | |
| 170 | int32_t spvOpcodeIsComposite(const spv::Op opcode) { |
| 171 | switch (opcode) { |
no test coverage detected