Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
svv232 committed Oct 26, 2024
1 parent 9caea7b commit b67df9a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion o1vm/src/interpreters/mips/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,9 @@ pub trait InterpreterEnv {
self.lookup_32bits(value);

// Second, check upperbound: value + 2^32 - 2^bits < 2^32
self.lookup_32bits(&(value.clone() + Self::constant64(1u64 << 32) - Self::constant64(1u64 << bits)));
self.lookup_32bits(
&(value.clone() + Self::constant64(1u64 << 32) - Self::constant64(1u64 << bits)),
);
}

fn range_check64(&mut self, _value: &Self::Variable) {
Expand Down

0 comments on commit b67df9a

Please sign in to comment.