aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_vm2_poly_singleton.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm2_poly_singleton.rb')
-rw-r--r--benchmark/bm_vm2_poly_singleton.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/benchmark/bm_vm2_poly_singleton.rb b/benchmark/bm_vm2_poly_singleton.rb
deleted file mode 100644
index 0dba4320c4..0000000000
--- a/benchmark/bm_vm2_poly_singleton.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-class C1
- def m; 1; end
-end
-
-o1 = C1.new
-o2 = C1.new
-o2.singleton_class
-
-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