diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-02-06 01:36:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-06 00:36:17 +0000 |
commit | 1fd4b46dd05cacde08ec2d8575b35512ccfa5d63 (patch) | |
tree | 210455b95201482711ca008e25f2949e919166ee /cli/bench | |
parent | 838f7c257fc0989acaf5013bfa970dc20bafe0d1 (diff) |
bench: fix benchmark (#22279)
Missed in https://github.com/denoland/deno/pull/22277
Diffstat (limited to 'cli/bench')
-rw-r--r-- | cli/bench/deno_common.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cli/bench/deno_common.js b/cli/bench/deno_common.js index a53045462..7d4ebb37c 100644 --- a/cli/bench/deno_common.js +++ b/cli/bench/deno_common.js @@ -10,9 +10,6 @@ function addJS(a, b) { } Deno.bench("add_js", () => addJS(1, 2)); -// Void ops measure op-overhead -Deno.bench("op_void_sync", () => op_void_sync()); - // A very lightweight op, that should be highly optimizable Deno.bench("perf_now", { n: 5e5 }, () => { performance.now(); |