aboutsummaryrefslogtreecommitdiff
path: root/examples/fib.fwd
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-12-06 18:19:48 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2024-12-06 18:19:48 +0200
commitc00a53304727931cc1e55bc6d6ea2694c62abb95 (patch)
tree52f425f2eb9c46150a72bebaf436b7427118a64b /examples/fib.fwd
parente5fda1c96af409065fedbe032b0f7908d9f312ac (diff)
downloadfwd-c00a53304727931cc1e55bc6d6ea2694c62abb95.tar.gz
fwd-c00a53304727931cc1e55bc6d6ea2694c62abb95.zip
fix some comments in the examples
Diffstat (limited to 'examples/fib.fwd')
-rw-r--r--examples/fib.fwd10
1 files changed, 4 insertions, 6 deletions
diff --git a/examples/fib.fwd b/examples/fib.fwd
index 4eb2e60..44ced4a 100644
--- a/examples/fib.fwd
+++ b/examples/fib.fwd
@@ -1,9 +1,7 @@
-/* heh, this technically speaking would work but the templating turns out to be
- * too much for both GCC and clang. With some manual intervention on the
- * generated code I can get fibonacci numbers up to about 35 to work, but then
- * I run out of stack space. I guess the compiler can't collapse frames so the
- * bifurcating nature of fibonacci just gets mapped to a linear sequence of
- * calls? */
+/* heh, this technically speaking works, but I guess the compiler can't collapse
+ * frames so the bifurcating nature of fibonacci just gets mapped to a linear
+ * sequence of calls, taking up way more stack space than a typical, returning,
+ * function */
fib(int n, (int) res)
{