| 2638 | |
| 2639 | |
| 2640 | int64_t LowLevelILInstruction::GetConstant() const |
| 2641 | { |
| 2642 | size_t operandIndex; |
| 2643 | if (GetOperandIndexForUsage(ConstantLowLevelOperandUsage, operandIndex)) |
| 2644 | return GetRawOperandAsInteger(operandIndex); |
| 2645 | throw LowLevelILInstructionAccessException(); |
| 2646 | } |
| 2647 | |
| 2648 | |
| 2649 | uint64_t LowLevelILInstruction::GetOffset() const |
no test coverage detected