| 890 | |
| 891 | |
| 892 | bool HighLevelILInstructionBase::HasMediumLevelIL() const |
| 893 | { |
| 894 | Ref<MediumLevelILFunction> func = function->GetMediumLevelIL(); |
| 895 | if (!func) |
| 896 | return false; |
| 897 | Ref<MediumLevelILFunction> ssa = func->GetSSAForm().GetPtr(); |
| 898 | if (!ssa) |
| 899 | return false; |
| 900 | return GetMediumLevelILExprIndex() < ssa->GetExprCount(); |
| 901 | } |
| 902 | |
| 903 | |
| 904 | MediumLevelILInstruction HighLevelILInstructionBase::GetMediumLevelIL() const |
nothing calls this directly
no test coverage detected