diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-07-16 10:53:15 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-07-16 10:53:15 -0400 |
| commit | e9a03cccf375f11aa4e0a8a3515e499c88d05cde (patch) | |
| tree | 6e6cd2117a7d25684a09a24be9f30ab684b650cc /src/all_types.hpp | |
| parent | 363f4facea7fac2d6cfeab9d1d276ecd8e8e4df0 (diff) | |
| download | zig-e9a03cccf375f11aa4e0a8a3515e499c88d05cde.tar.gz zig-e9a03cccf375f11aa4e0a8a3515e499c88d05cde.zip | |
all integer sizes are available as primitives
* fix wrong implicit cast for `@IntType` bit_count parameter.
* fix incorrect docs for `@IntType` bit_count parameter.
closes #1242
closes #745
closes #1240
Diffstat (limited to 'src/all_types.hpp')
| -rw-r--r-- | src/all_types.hpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/all_types.hpp b/src/all_types.hpp index 2da0677e1b..bcd6a04cc3 100644 --- a/src/all_types.hpp +++ b/src/all_types.hpp @@ -1587,7 +1587,6 @@ struct CodeGen { struct { TypeTableEntry *entry_bool; - TypeTableEntry *entry_int[2][12]; // [signed,unsigned][2,3,4,5,6,7,8,16,29,32,64,128] TypeTableEntry *entry_c_int[CIntTypeCount]; TypeTableEntry *entry_c_longdouble; TypeTableEntry *entry_c_void; @@ -1596,12 +1595,9 @@ struct CodeGen { TypeTableEntry *entry_u32; TypeTableEntry *entry_u29; TypeTableEntry *entry_u64; - TypeTableEntry *entry_u128; TypeTableEntry *entry_i8; - TypeTableEntry *entry_i16; TypeTableEntry *entry_i32; TypeTableEntry *entry_i64; - TypeTableEntry *entry_i128; TypeTableEntry *entry_isize; TypeTableEntry *entry_usize; TypeTableEntry *entry_f16; |
