summaryrefslogtreecommitdiff
path: root/trunk/benchmark/bm_vm1_swap.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/benchmark/bm_vm1_swap.rb')
-rw-r--r--trunk/benchmark/bm_vm1_swap.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/trunk/benchmark/bm_vm1_swap.rb b/trunk/benchmark/bm_vm1_swap.rb
deleted file mode 100644
index a565b6f6dc..0000000000
--- a/trunk/benchmark/bm_vm1_swap.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-a = 1
-b = 2
-i=0
-while i<30000000 # while loop 1
- i+=1
- a, b = b, a
-end
-