summaryrefslogtreecommitdiff
path: root/trunk/benchmark/bm_vm2_poly_method_ov.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/benchmark/bm_vm2_poly_method_ov.rb')
-rw-r--r--trunk/benchmark/bm_vm2_poly_method_ov.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/trunk/benchmark/bm_vm2_poly_method_ov.rb b/trunk/benchmark/bm_vm2_poly_method_ov.rb
deleted file mode 100644
index 856ba9b161..0000000000
--- a/trunk/benchmark/bm_vm2_poly_method_ov.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<6000000 # 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