summaryrefslogtreecommitdiff
path: root/benchmark/vm2_super.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/vm2_super.yml')
-rw-r--r--benchmark/vm2_super.yml17
1 files changed, 0 insertions, 17 deletions
diff --git a/benchmark/vm2_super.yml b/benchmark/vm2_super.yml
deleted file mode 100644
index 674743762a..0000000000
--- a/benchmark/vm2_super.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-prelude: |
- class C
- def m
- 1
- end
- end
-
- class CC < C
- def m
- super()
- end
- end
-
- obj = CC.new
-benchmark:
- vm2_super: obj.m
-loop_count: 6000000