aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_vm2_proc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm2_proc.rb')
-rw-r--r--benchmark/bm_vm2_proc.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/benchmark/bm_vm2_proc.rb b/benchmark/bm_vm2_proc.rb
deleted file mode 100644
index 65e5217371..0000000000
--- a/benchmark/bm_vm2_proc.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-def m &b
- b
-end
-
-pr = m{
- a = 1
-}
-
-i = 0
-while i<6_000_000 # benchmark loop 2
- i += 1
- pr.call
-end
-