aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_vm1_blockparam_call.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm1_blockparam_call.rb')
-rwxr-xr-xbenchmark/bm_vm1_blockparam_call.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/benchmark/bm_vm1_blockparam_call.rb b/benchmark/bm_vm1_blockparam_call.rb
deleted file mode 100755
index f6102a2b5a..0000000000
--- a/benchmark/bm_vm1_blockparam_call.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-def m &b
- b.call
-end
-
-i = 0
-while i<30_000_000 # while loop 1
- i += 1
- m{}
-end