From 1fd4b46dd05cacde08ec2d8575b35512ccfa5d63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 6 Feb 2024 01:36:17 +0100 Subject: [PATCH] bench: fix benchmark (#22279) Missed in https://github.com/denoland/deno/pull/22277 --- cli/bench/deno_common.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/cli/bench/deno_common.js b/cli/bench/deno_common.js index a53045462f..7d4ebb37c9 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();