(self)
| 1726 | class LowLevelILRegSplitDestSsa(LowLevelILInstruction, SSA): |
| 1727 | @property |
| 1728 | def dest(self) -> SSARegister: |
| 1729 | return self._get_reg_ssa(0, 1) |
| 1730 | |
| 1731 | @property |
| 1732 | def detailed_operands(self) -> List[Tuple[str, LowLevelILOperandType, str]]: |
nothing calls this directly
no test coverage detected