| 2458 | |
| 2459 | |
| 2460 | uint32_t LowLevelILInstruction::GetDestRegister() const |
| 2461 | { |
| 2462 | size_t operandIndex; |
| 2463 | if (GetOperandIndexForUsage(DestRegisterLowLevelOperandUsage, operandIndex)) |
| 2464 | return GetRawOperandAsRegister(operandIndex); |
| 2465 | throw LowLevelILInstructionAccessException(); |
| 2466 | } |
| 2467 | |
| 2468 | |
| 2469 | uint32_t LowLevelILInstruction::GetDestRegisterStack() const |
no test coverage detected