aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/fib.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-09-08 22:05:33 +0200
committerlemon <lsof@mailbox.org>2025-09-08 22:05:33 +0200
commite043811980db560fc2507bb53b644e54c80527dc (patch)
tree6ea563d81c9d3767f439e361fc2c884cf4f9b64d /test/fib.c
parent36b5b19bf183cb01525201ccbddd6afa692f21bb (diff)
regalloc: start implementing linear scan
Diffstat (limited to 'test/fib.c')
-rw-r--r--test/fib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fib.c b/test/fib.c
index 5fe430a..0c02171 100644
--- a/test/fib.c
+++ b/test/fib.c
@@ -29,8 +29,8 @@ int printf(const char *, ...);
int main(int argc, char **argv) {
unsigned n = argv[1] ? atoi(argv[1]) : 10;
printf("fib(%u) = %u\n", n, fib(n));
- printf("fibr(%u) = %u\n", n, fibr(n));
printf("fibf(%u) = %g\n", n, fibf(n));
+ printf("fibr(%u) = %u\n", n, fibr(n));
}
/* vim:set ts=3 sw=3 expandtab: */