(self)
| 2281 | class LowLevelILSetRegSsa(LowLevelILInstruction, SetReg, SSA): |
| 2282 | @property |
| 2283 | def dest(self) -> SSARegister: |
| 2284 | return self._get_reg_ssa(0, 1) |
| 2285 | |
| 2286 | @property |
| 2287 | def src(self) -> LowLevelILInstruction: |
nothing calls this directly
no test coverage detected