| 1565 | |
| 1566 | |
| 1567 | void LowLevelILInstructionBase::UpdateRawOperandAsSSARegisterList(size_t operandIndex, const vector<SSARegister>& regs) |
| 1568 | { |
| 1569 | UpdateRawOperand(operandIndex, regs.size() * 2); |
| 1570 | UpdateRawOperand(operandIndex + 1, function->AddSSARegisterList(regs)); |
| 1571 | } |
| 1572 | |
| 1573 | |
| 1574 | void LowLevelILInstructionBase::UpdateRawOperandAsSSARegisterOrFlagList( |
no test coverage detected