(&self)
| 1220 | } |
| 1221 | |
| 1222 | pub fn carry(&self) -> LowLevelILExpression<'func, A, M, F, ValueExpr> { |
| 1223 | LowLevelILExpression::new( |
| 1224 | self.function, |
| 1225 | LowLevelExpressionIndex(self.op.operands[2] as usize), |
| 1226 | ) |
| 1227 | } |
| 1228 | } |
| 1229 | |
| 1230 | impl<A, M, F> Debug for Operation<'_, A, M, F, BinaryOpCarry> |
no test coverage detected