| 1764 | |
| 1765 | |
| 1766 | MediumLevelILInstruction LowLevelILInstructionBase::GetMappedMediumLevelIL() const |
| 1767 | { |
| 1768 | Ref<MediumLevelILFunction> func = function->GetMappedMediumLevelIL(); |
| 1769 | if (!func) |
| 1770 | throw MediumLevelILInstructionAccessException(); |
| 1771 | size_t expr = GetMappedMediumLevelILExprIndex(); |
| 1772 | if (expr >= func->GetExprCount()) |
| 1773 | throw MediumLevelILInstructionAccessException(); |
| 1774 | return func->GetExpr(expr); |
| 1775 | } |
| 1776 | |
| 1777 | |
| 1778 | char* LowLevelILInstructionBase::Dump() const |
no test coverage detected