| 1572 | |
| 1573 | |
| 1574 | void LowLevelILInstructionBase::UpdateRawOperandAsSSARegisterOrFlagList( |
| 1575 | size_t operandIndex, const vector<SSARegisterOrFlag>& outputs) |
| 1576 | { |
| 1577 | UpdateRawOperand(operandIndex, outputs.size() * 2); |
| 1578 | UpdateRawOperand(operandIndex + 1, function->AddSSARegisterOrFlagList(outputs)); |
| 1579 | } |
| 1580 | |
| 1581 | |
| 1582 | RegisterValue LowLevelILInstructionBase::GetValue() const |
no test coverage detected