diff options
| author | 2022-08-24 08:23:36 +0200 | |
|---|---|---|
| committer | 2022-08-24 08:23:36 +0200 | |
| commit | ca3b09c836af6878ce3879ef91d7ba75f9898cb8 (patch) | |
| tree | 25697e64c4976df1ba80fd7695bec6eb646629d2 /src/cffc.hff | |
| parent | fa541d48d80d99d78e2ff41b0bea66d8a92c9bd6 (diff) | |
dot operator llvm
Diffstat (limited to 'src/cffc.hff')
| -rw-r--r-- | src/cffc.hff | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cffc.hff b/src/cffc.hff index a4099e7..882793f 100644 --- a/src/cffc.hff +++ b/src/cffc.hff @@ -459,7 +459,7 @@ fn isnumtype(ty *const Type) bool { return ty->is(:Int) or ty->is(:Flo) or (ty->is(:Enum) and ty.u.Enum.lax); } extern fn typeof2(a *const Type, b *const Type) *const Type; -extern fn types_to_llvm() void; +extern fn visittypes(*fn(*const Type, *void) void, *void) void; // env.cff extern fn mkenv(parent *Env, alloc *Allocator) *Env; |