| 2449 | |
| 2450 | |
| 2451 | LowLevelILInstruction LowLevelILInstruction::GetDestExpr() const |
| 2452 | { |
| 2453 | size_t operandIndex; |
| 2454 | if (GetOperandIndexForUsage(DestExprLowLevelOperandUsage, operandIndex)) |
| 2455 | return GetRawOperandAsExpr(operandIndex); |
| 2456 | throw LowLevelILInstructionAccessException(); |
| 2457 | } |
| 2458 | |
| 2459 | |
| 2460 | uint32_t LowLevelILInstruction::GetDestRegister() const |
no test coverage detected