Skip to content

Commit debadb5

Browse files
committedDec 5, 2023
cargo fmt
1 parent 26effaa commit debadb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎optimism/src/mips/interpreter.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -552,15 +552,15 @@ pub fn interpret_rtype<Env: InterpreterEnv>(env: &mut Env, instr: RTypeInstructi
552552
env.set_instruction_pointer(next_instruction_pointer.clone());
553553
env.set_next_instruction_pointer(next_instruction_pointer + Env::constant(4u32));
554554
return;
555-
},
555+
}
556556
RTypeInstruction::AddUnsigned => {
557557
let rs = env.read_register(&rs);
558558
let rt = env.read_register(&rt);
559559
env.write_register(&rd, rs + rt);
560560
env.set_instruction_pointer(next_instruction_pointer.clone());
561561
env.set_next_instruction_pointer(next_instruction_pointer + Env::constant(4u32));
562562
return;
563-
},
563+
}
564564
RTypeInstruction::Sub => (),
565565
RTypeInstruction::SubUnsigned => (),
566566
RTypeInstruction::And => (),

0 commit comments

Comments
 (0)
Please sign in to comment.