| 1734 | |
| 1735 | |
| 1736 | bool LowLevelILInstructionBase::HasMediumLevelIL() const |
| 1737 | { |
| 1738 | Ref<MediumLevelILFunction> func = function->GetMediumLevelIL(); |
| 1739 | if (!func) |
| 1740 | return false; |
| 1741 | return GetMediumLevelILExprIndex() < func->GetExprCount(); |
| 1742 | } |
| 1743 | |
| 1744 | |
| 1745 | bool LowLevelILInstructionBase::HasMappedMediumLevelIL() const |
nothing calls this directly
no test coverage detected