We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1611897 commit e0fb329Copy full SHA for e0fb329
crates/revm/src/instructions/macros.rs
@@ -215,8 +215,9 @@ macro_rules! op2_u256_tuple {
215
// gas!($interp, $gas);
216
217
pop_top!($interp, op1, op2);
218
- let (ret, ..) = op1.$op(*op2);
219
- *op2 = ret;
+ let (ret, ..) =
+ primitive_types::U256(op1.into_limbs()).$op(primitive_types::U256(op2.into_limbs()));
220
+ *op2 = U256::from_limbs(ret.0);
221
222
Return::Continue
223
}};
0 commit comments