| 2360 | |
| 2361 | |
| 2362 | int64_t HighLevelILInstruction::GetConstant() const |
| 2363 | { |
| 2364 | size_t operandIndex; |
| 2365 | if (GetOperandIndexForUsage(ConstantHighLevelOperandUsage, operandIndex)) |
| 2366 | return GetRawOperandAsInteger(operandIndex); |
| 2367 | throw HighLevelILInstructionAccessException(); |
| 2368 | } |
| 2369 | |
| 2370 | |
| 2371 | ConstantData HighLevelILInstruction::GetConstantData() const |
no test coverage detected