| 2581 | |
| 2582 | |
| 2583 | uint32_t SpirvModule::opLogicalEqual( |
| 2584 | uint32_t resultType, |
| 2585 | uint32_t operand1, |
| 2586 | uint32_t operand2) { |
| 2587 | uint32_t resultId = this->allocateId(); |
| 2588 | |
| 2589 | m_code.putIns (spv::OpLogicalEqual, 5); |
| 2590 | m_code.putWord(resultType); |
| 2591 | m_code.putWord(resultId); |
| 2592 | m_code.putWord(operand1); |
| 2593 | m_code.putWord(operand2); |
| 2594 | return resultId; |
| 2595 | } |
| 2596 | |
| 2597 | |
| 2598 | uint32_t SpirvModule::opLogicalNotEqual( |
no test coverage detected