| 2626 | |
| 2627 | |
| 2628 | uint32_t SpirvModule::opLogicalOr( |
| 2629 | uint32_t resultType, |
| 2630 | uint32_t operand1, |
| 2631 | uint32_t operand2) { |
| 2632 | uint32_t resultId = this->allocateId(); |
| 2633 | |
| 2634 | m_code.putIns (spv::OpLogicalOr, 5); |
| 2635 | m_code.putWord(resultType); |
| 2636 | m_code.putWord(resultId); |
| 2637 | m_code.putWord(operand1); |
| 2638 | m_code.putWord(operand2); |
| 2639 | return resultId; |
| 2640 | } |
| 2641 | |
| 2642 | |
| 2643 | uint32_t SpirvModule::opLogicalNot( |
no test coverage detected