diff options
| author | Kai Gunger <kgunger12@gmail.com> | 2026-07-07 17:32:42 -0400 |
|---|---|---|
| committer | Kai Gunger <kgunger12@gmail.com> | 2026-07-07 17:32:42 -0400 |
| commit | f9665d8aa06e11730a9d6e7af3f98ccefb324bbf (patch) | |
| tree | 3f5871e762df044eefff9df9d6fb2b14cdd72f75 /tnslc/compile/codegen.tnsl | |
| parent | 039810c285f17e1fc1fe78a8b5cb691b7616d106 (diff) | |
[tnslc] Make void 1 byte to fix adds
Diffstat (limited to 'tnslc/compile/codegen.tnsl')
| -rw-r--r-- | tnslc/compile/codegen.tnsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tnslc/compile/codegen.tnsl b/tnslc/compile/codegen.tnsl index 636f16b..dae3764 100644 --- a/tnslc/compile/codegen.tnsl +++ b/tnslc/compile/codegen.tnsl @@ -117,6 +117,6 @@ _gen_prim(m, 8, "uint\0") _gen_prim(m, 8, "int\0") _gen_prim(m, 8, "float\0") - _gen_prim(m, 8, "void\0") + _gen_prim(m, 1, "void\0") ;/ |