1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

Fix typo in arithmetic benchmark

* benchmark-suite/benchmarks/arithmetic.bm (fixnum): Fix `-' benchmark
  to actually use `-' operator instead of `+' operator.
This commit is contained in:
Mark H Weaver 2011-04-07 02:28:01 -04:00
parent 165b10ddfa
commit 40c2a95a72

View file

@ -58,7 +58,7 @@
(repeat (+ 2 <>) 7 100))
(benchmark "-" 1e7
(repeat (+ 2 <>) 7 100))
(repeat (- 2 <>) 7 100))
(benchmark "*" 1e7
(repeat (* 1 <>) 1 100))