| 864 | |
| 865 | |
| 866 | HighLevelILInstruction HighLevelILInstructionBase::GetSSAForm() const |
| 867 | { |
| 868 | Ref<HighLevelILFunction> ssa = function->GetSSAForm().GetPtr(); |
| 869 | if (!ssa) |
| 870 | return *this; |
| 871 | size_t expr = GetSSAExprIndex(); |
| 872 | return ssa->GetExpr(expr); |
| 873 | } |
| 874 | |
| 875 | |
| 876 | HighLevelILInstruction HighLevelILInstructionBase::GetNonSSAForm() const |
no test coverage detected