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