Skip to content

Commit

Permalink
fixing unused variable naming to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
svv232 committed Dec 1, 2024
1 parent 1e6efe5 commit c281b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion o1vm/src/interpreters/riscv32im/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2069,7 +2069,7 @@ pub fn interpret_sbtype<Env: InterpreterEnv>(env: &mut Env, instr: SBInstruction
/* fetch instruction pointer from the program state */
let instruction_pointer = env.get_instruction_pointer();
/* compute the next instruction ptr and add one, as well record raml lookup */
let _next_instruction_pointer = env.get_next_instruction_pointer();
let next_instruction_pointer = env.get_next_instruction_pointer();
/* read instruction from ip address */
let instruction = {
let v0 = env.read_memory(&instruction_pointer);
Expand Down

0 comments on commit c281b7e

Please sign in to comment.