summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/bench/deno_common.js3
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();