diff options
author | Mark H Weaver <mhw@netris.org> | 2011-04-07 02:28:01 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2011-04-07 02:31:13 -0400 |
commit | 40c2a95a72b3a831d9de319afbc9d72a0133110e (patch) | |
tree | 158daf182ce4e783fd6dafa7ea1a5a6bcad14122 /benchmark-suite | |
parent | 165b10ddfaaa8ecc72d45a9be7d29e7537dc2379 (diff) |
Fix typo in arithmetic benchmark
* benchmark-suite/benchmarks/arithmetic.bm (fixnum): Fix `-' benchmark
to actually use `-' operator instead of `+' operator.
Diffstat (limited to 'benchmark-suite')
-rw-r--r-- | benchmark-suite/benchmarks/arithmetic.bm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark-suite/benchmarks/arithmetic.bm b/benchmark-suite/benchmarks/arithmetic.bm index 0755c0324..c64f6c20b 100644 --- a/benchmark-suite/benchmarks/arithmetic.bm +++ b/benchmark-suite/benchmarks/arithmetic.bm @@ -58,7 +58,7 @@ (repeat (+ 2 <>) 7 100)) (benchmark "-" 1e7 - (repeat (+ 2 <>) 7 100)) + (repeat (- 2 <>) 7 100)) (benchmark "*" 1e7 (repeat (* 1 <>) 1 100)) |