summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_gc_short_lived.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm1_gc_short_lived.rb')
-rw-r--r--benchmark/bm_vm1_gc_short_lived.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/benchmark/bm_vm1_gc_short_lived.rb b/benchmark/bm_vm1_gc_short_lived.rb
deleted file mode 100644
index e78bca5668..0000000000
--- a/benchmark/bm_vm1_gc_short_lived.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-i = 0
-while i<30_000_000 # while loop 1
- a = '' # short-lived String
- b = ''
- c = ''
- d = ''
- e = ''
- f = ''
- i+=1
-end