diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-02-16 13:45:14 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-02-16 13:45:14 -0500 |
| commit | 4a957b9ea32e0539772993278a9a1f99ee3df68b (patch) | |
| tree | 2a2055b06413d72d3f3381a2723d9adef2c16623 /src/codegen.cpp | |
| parent | 1fc2082b4ccc2b75fba892bc9e27e9a5a3d821bf (diff) | |
| download | zig-4a957b9ea32e0539772993278a9a1f99ee3df68b.tar.gz zig-4a957b9ea32e0539772993278a9a1f99ee3df68b.zip | |
move int and array types to central table
Diffstat (limited to 'src/codegen.cpp')
| -rw-r--r-- | src/codegen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp index c13bd56f53..8180034956 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -58,7 +58,7 @@ CodeGen *codegen_create(Buf *root_source_dir, const ZigTarget *target) { g->import_table.init(32); g->builtin_fn_table.init(32); g->primitive_type_table.init(32); - g->int_type_table.init(8); + g->type_table.init(32); g->fn_type_table.init(32); g->error_table.init(16); g->generic_table.init(16); |
