summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_simplereturn.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm1_simplereturn.rb')
-rw-r--r--benchmark/bm_vm1_simplereturn.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/benchmark/bm_vm1_simplereturn.rb b/benchmark/bm_vm1_simplereturn.rb
deleted file mode 100644
index 63f9f21675..0000000000
--- a/benchmark/bm_vm1_simplereturn.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-def m
- return 1
-end
-i = 0
-while i<30_000_000 # while loop 1
- i += 1
- m
-end
-