From f17948b513c8ca2a13d4b890e94a5b560d3eed2c Mon Sep 17 00:00:00 2001 From: Tobias Melson Date: Sun, 19 Feb 2023 21:24:51 +0100 Subject: [PATCH] Fixed typo in Readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7a605de..3ca170c 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,12 @@ You can then compile a Brainfuck source file by invoking `bf `. Several co With `make check`, a suite of test programs will be compiled and run. Most of the tests are taken from [Wikipedia](https://en.wikipedia.org/wiki/Brainfuck), while [one test](test/pi.bf) has been created by Felix Nawothnig. -## Benchmarks +## Benchmark -The following test case has been used for benchmarking the compiler: `factor.b` by [Brian Raiter](https://github.com/BR903/ELFkickers/blob/master/ebfc/bf) with input `6543210987654321`. The code has been compiled with different compilers and optimization levels. +The following test case has been used for benchmarking the compiler: `factor.b` by [Brian Raiter](https://github.com/BR903/ELFkickers/blob/master/ebfc/bf) with input `6543210987654321`. The code has been compiled with different compilers enabling the highest optimization level. | Compiler | Runtime | | -------- | ------- | | [ebfc (commit e7fba94)](https://github.com/BR903/ELFkickers/tree/e7fba942df51e756897224cff5aa853de8fafd90/ebfc) | 23 seconds | -| [bfc (verion 1.7.0)](https://bfc.wilfred.me.uk/) | 8.5 seconds | +| [bfc (version 1.7.0)](https://bfc.wilfred.me.uk/) | 8.5 seconds | | this repository | 7.8 seconds |