Skip to content

Commit

Permalink
feat: implement more ORCv2 bindings (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Jul 10, 2024
1 parent a601b00 commit 4ef99d5
Show file tree
Hide file tree
Showing 5 changed files with 504 additions and 115 deletions.
2 changes: 1 addition & 1 deletion crates/revmc-cli/benches/bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ fn run_bench(c: &mut Criterion, bench: &Bench) {
});
for &(name, fn_id) in &jit_ids {
let jit = unsafe { compiler.jit_function(fn_id) }.expect(name);
g.bench_function(&format!("revmc/{name}"), |b| b.iter(|| call_jit(jit)));
g.bench_function(format!("revmc/{name}"), |b| b.iter(|| call_jit(jit)));
}

g.bench_function("revm-interpreter", |b| {
Expand Down
Loading

0 comments on commit 4ef99d5

Please sign in to comment.