summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm2_method_with_block.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm2_method_with_block.rb')
-rw-r--r--benchmark/bm_vm2_method_with_block.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/benchmark/bm_vm2_method_with_block.rb b/benchmark/bm_vm2_method_with_block.rb
new file mode 100644
index 0000000000..b4efb4f520
--- /dev/null
+++ b/benchmark/bm_vm2_method_with_block.rb
@@ -0,0 +1,9 @@
+def m
+ nil
+end
+
+i = 0
+while i<6_000_000 # benchmark loop 2
+ i += 1
+ m{}; m{}; m{}; m{}; m{}; m{}; m{}; m{};
+end