Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Jul 18, 2024
1 parent e4c1493 commit 51f13b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/revmc/src/bytecode/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ impl<'a> Bytecode<'a> {
let data = self.inst(inst);
if data.is_eof_jump() {
for (_, pc) in self.iter_rjump_targets(data) {
let target_inst = self.pc_to_inst(pc as usize);
let target_inst = self.pc_to_inst(pc);
self.inst_mut(target_inst).flags |= InstFlags::EOF_JUMPDEST;
}
}
Expand Down

0 comments on commit 51f13b3

Please sign in to comment.