mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-02-24 07:43:11 +00:00
minor
This commit is contained in:
parent
5ca2d88bfb
commit
a72d4faaec
@ -118,7 +118,7 @@ impl<'a> Interpreter<'a> {
|
||||
let mut tot = 0;
|
||||
for i in 0..0x100 {
|
||||
if self.opcode_count[i] > 0 {
|
||||
tot = tot + self.opcode_count[i];
|
||||
tot += self.opcode_count[i];
|
||||
println!("{}: {}", get_mnemonic(i as u8), self.opcode_count[i])
|
||||
}
|
||||
}
|
||||
|
||||
@ -162,7 +162,7 @@ fn make_initial_stack(
|
||||
input.extend(vec![in1]);
|
||||
input.extend(f1);
|
||||
input.extend(g0);
|
||||
input.extend(vec![U256::from(in2)]);
|
||||
input.extend(vec![in2]);
|
||||
input.extend(g1);
|
||||
input.extend(vec![in2, out, in1]);
|
||||
input.reverse();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user