summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm2_case.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm2_case.rb')
-rw-r--r--benchmark/bm_vm2_case.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/benchmark/bm_vm2_case.rb b/benchmark/bm_vm2_case.rb
deleted file mode 100644
index adc6e4df0a..0000000000
--- a/benchmark/bm_vm2_case.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-i = 0
-while i<6_000_000 # while loop 2
- case :foo
- when :bar
- raise
- when :baz
- raise
- when :boo
- raise
- when :foo
- i += 1
- end
-end
-