From 29a13aaef41bcede53ed58ba0dd9a487ed7ea534 Mon Sep 17 00:00:00 2001 From: Alexander Taylor Date: Thu, 29 Aug 2024 16:31:30 -0400 Subject: Fix warnings in lifting for C-SKY. --- rust/src/llil/lifting.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/src') diff --git a/rust/src/llil/lifting.rs b/rust/src/llil/lifting.rs index f8b8257e..840e029b 100644 --- a/rust/src/llil/lifting.rs +++ b/rust/src/llil/lifting.rs @@ -867,7 +867,7 @@ macro_rules! binary_op_carry_lifter { let left = L::lift_with_size(self, left, size); let right = R::lift_with_size(self, right, size); - let carry = C::lift_with_size(self, carry, 1); // TODO 0? + let carry = C::lift_with_size(self, carry, 0); ExpressionBuilder { function: self, -- cgit v1.3.1