| 874 | |
| 875 | |
| 876 | HighLevelILInstruction HighLevelILInstructionBase::GetNonSSAForm() const |
| 877 | { |
| 878 | Ref<HighLevelILFunction> nonSsa = function->GetNonSSAForm(); |
| 879 | if (!nonSsa) |
| 880 | return *this; |
| 881 | size_t expr = GetNonSSAExprIndex(); |
| 882 | return nonSsa->GetExpr(expr); |
| 883 | } |
| 884 | |
| 885 | |
| 886 | size_t HighLevelILInstructionBase::GetMediumLevelILExprIndex() const |
no test coverage detected