diff options
| author | Alexander Taylor <alex@vector35.com> | 2024-08-29 16:31:30 -0400 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2024-08-30 14:46:19 -0400 |
| commit | 29a13aaef41bcede53ed58ba0dd9a487ed7ea534 (patch) | |
| tree | 8890d92ffcbaab7707d6e7bb8fd4ab68c098f54a /rust/src | |
| parent | d92df755105a32d6a9088c09d7f2f73f282decb2 (diff) | |
Fix warnings in lifting for C-SKY.
Diffstat (limited to 'rust/src')
| -rw-r--r-- | rust/src/llil/lifting.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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, |
