summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_float_simple.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm1_float_simple.rb')
-rw-r--r--benchmark/bm_vm1_float_simple.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/benchmark/bm_vm1_float_simple.rb b/benchmark/bm_vm1_float_simple.rb
new file mode 100644
index 0000000000..46e3f2aaed
--- /dev/null
+++ b/benchmark/bm_vm1_float_simple.rb
@@ -0,0 +1,7 @@
+i= 0.0; f = 0.0
+while i<30_000_000
+ i+= 1
+ f += 0.1; f -= 0.1
+ f += 0.1; f -= 0.1
+ f += 0.1; f -= 0.1
+end