| 1688 | |
| 1689 | |
| 1690 | LowLevelILInstruction LowLevelILInstructionBase::GetSSAForm() const |
| 1691 | { |
| 1692 | Ref<LowLevelILFunction> ssa = function->GetSSAForm().GetPtr(); |
| 1693 | if (!ssa) |
| 1694 | return *this; |
| 1695 | size_t expr = GetSSAExprIndex(); |
| 1696 | size_t instr = GetSSAInstructionIndex(); |
| 1697 | return LowLevelILInstruction(ssa, ssa->GetRawExpr(expr), expr, instr); |
| 1698 | } |
| 1699 | |
| 1700 | |
| 1701 | LowLevelILInstruction LowLevelILInstructionBase::GetNonSSAForm() const |
nothing calls this directly
no test coverage detected