summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm2_poly_method.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm2_poly_method.rb')
-rw-r--r--benchmark/bm_vm2_poly_method.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/benchmark/bm_vm2_poly_method.rb b/benchmark/bm_vm2_poly_method.rb
deleted file mode 100644
index c82c0e4bce..0000000000
--- a/benchmark/bm_vm2_poly_method.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-class C1
- def m
- 1
- end
-end
-class C2
- def m
- 2
- end
-end
-
-o1 = C1.new
-o2 = C2.new
-
-i = 0
-while i<6_000_000 # benchmark loop 2
- o = (i % 2 == 0) ? o1 : o2
- o.m; o.m; o.m; o.m; o.m; o.m; o.m; o.m
- i += 1
-end