From e043811980db560fc2507bb53b644e54c80527dc Mon Sep 17 00:00:00 2001 From: lemon Date: Mon, 8 Sep 2025 22:05:33 +0200 Subject: regalloc: start implementing linear scan --- test/fib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/fib.c') 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: */ -- cgit v1.2.3