| 791 | |
| 792 | |
| 793 | void HighLevelILInstructionBase::UpdateRawOperand(size_t operandIndex, ExprId value) |
| 794 | { |
| 795 | operands[operandIndex] = value; |
| 796 | function->UpdateInstructionOperand(exprIndex, operandIndex, value); |
| 797 | } |
| 798 | |
| 799 | |
| 800 | void HighLevelILInstructionBase::UpdateRawOperandAsInteger(size_t operandIndex, uint64_t value) |
nothing calls this directly
no test coverage detected