diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-05-07 21:22:38 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2026-01-06 17:19:52 +0200 |
| commit | d501b2c9ebab6f5b90c808ea0e5fde912818707d (patch) | |
| tree | c41f5292d1107ac56c3671860a18717a63730772 /mod/io.c | |
| parent | 49320376a1ba3fcc7eba7ceda2c728649ee8323e (diff) | |
| download | fwd-d501b2c9ebab6f5b90c808ea0e5fde912818707d.tar.gz fwd-d501b2c9ebab6f5b90c808ea0e5fde912818707d.zip | |
implement enough type analysis for vector example
+ Big commit, scary
+ Some details still a bit up in the air, mainly about move checking
structure member access ('register' types are freely copied I guess,
same as in rust? How about user types?)
Diffstat (limited to 'mod/io.c')
| -rw-r--r-- | mod/io.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,14 +4,14 @@ #include <fwd/mod.h> -long print_nl(fwd_extern_args_t args) +long fwdprint_nl(fwd_extern_args_t args) { assert(args.argc == 0); putchar('\n'); return 0; } -long print_i64(fwd_extern_args_t args) +long fwdprint_i64(fwd_extern_args_t args) { assert(args.argc == 1); int64_t n = FWD_ARG_T(args, 0, int64_t); @@ -21,10 +21,10 @@ long print_i64(fwd_extern_args_t args) int fwdopen(fwd_state_t *state) { - FWD_REGISTER(state, print_nl, + FWD_REGISTER(state, fwdprint_nl, FWD_VOID); - FWD_REGISTER(state, print_i64, + FWD_REGISTER(state, fwdprint_i64, FWD_VOID, FWD_T(int64_t)); return 0; |
