(
il: &'a MutableLiftedILFunction<A>,
reg: Self,
)
| 568 | type Result = ValueExpr; |
| 569 | |
| 570 | fn lift( |
| 571 | il: &'a MutableLiftedILFunction<A>, |
| 572 | reg: Self, |
| 573 | ) -> MutableLiftedILExpr<'a, A, Self::Result> { |
| 574 | match reg { |
| 575 | LowLevelILRegister::ArchReg(r) => R::lift(il, r), |
| 576 | LowLevelILRegister::Temp(t) => il.reg( |
| 577 | il.arch().default_integer_size(), |
| 578 | LowLevelILRegister::Temp(t), |
| 579 | ), |
| 580 | } |
| 581 | } |
| 582 | } |
| 583 | |
| 584 | impl<'a, R: ArchReg, A: 'a + Architecture> LiftableLowLevelILWithSize<'a, A> |
nothing calls this directly
no test coverage detected