Skip to content

Commit

Permalink
Update optimism/src/mips/interpreter.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
dannywillems authored Dec 1, 2023
1 parent 08a157f commit 1e1feed
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion optimism/src/mips/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,6 @@ pub fn interpret_itype<Env: InterpreterEnv>(env: &mut Env, instr: ITypeInstructi
let addr_with_offset = addr.clone() + offset.clone();
debug!("lw {}, {}({})", dest.clone(), offset.clone(), addr.clone());
// We load 4 bytes, i.e. one word.
debug!("{}, {}({})", dest.clone(), offset.clone(), addr.clone());
let v0 = env.fetch_memory(&addr_with_offset);
let v1 = env.fetch_memory(&(addr_with_offset.clone() + Env::constant(1)));
let v2 = env.fetch_memory(&(addr_with_offset.clone() + Env::constant(2)));
Expand Down

0 comments on commit 1e1feed

Please sign in to comment.