aboutsummaryrefslogtreecommitdiff
path: root/src/types.cpp
Commit message (Expand)AuthorAgeFilesLines
* `enum #export`gingerBill2018-01-211-0/+1
* Cache type size/align; Improve speed of ir_print.cppgingerBill2018-01-201-6/+19
* Fix empty union IR buggingerBill2018-01-191-14/+18
* Change to HeapAlloc et al on WindowsgingerBill2018-01-181-7/+1
* Named return value act as variables; Code reorganizationgingerBill2018-01-171-0/+1
* Specific sized booleans: b8, b16, b32, b64gingerBill2018-01-171-0/+9
* Remove `u128` and `i128`gingerBill2018-01-131-15/+0
* "Fix" LLVM boolean bug (more like a bodge)gingerBill2017-12-221-0/+4
* Revert `map` to be a value type and not a reference typegingerBill2017-12-211-5/+2
* `map` is internally backed by a pointer (i.e. a "reference type")gingerBill2017-12-171-8/+11
* Remove `struct #ordered`gingerBill2017-12-171-3/+0
* Disable struct field reordering (for the time being)gingerBill2017-12-121-10/+14
* Fix union_tag_size; Fix constant array of array literal printing with scalar ...gingerBill2017-12-031-8/+17
* Remove `vector` type (will be replaced by something else in the future)gingerBill2017-11-301-112/+12
* Remove `using` in arrays; Remove `_` non-exported struct fieldsgingerBill2017-11-281-1/+12
* New slice memory layout (ptr+len); `byte`gingerBill2017-11-261-2/+3
* Fix issue #146 regarding polymorphic type parametersv0.7.0gingerBill2017-11-181-0/+6
* Allow for default arguments after a variadic parametergingerBill2017-11-121-1/+2
* Fix array of array arithmeticgingerBill2017-11-071-0/+10
* Fix cyclic type checking buggingerBill2017-11-051-41/+41
* #const value procedure parameters; $N for polymorphic array lengthsgingerBill2017-11-051-8/+30
* Add array programminggingerBill2017-11-051-1/+13
* Add string_set.cpp; Code clean upgingerBill2017-10-301-15/+25
* Attributes; @(link_name="foo")gingerBill2017-10-291-4/+7
* Fix issue #119Ginger Bill2017-10-121-0/+1
* Correct union sizeGinger Bill2017-10-081-4/+4
* Union tag stored as an integerGinger Bill2017-10-081-15/+39
* Better error messages for import cyclesGinger Bill2017-10-081-0/+18
* Default procedure values for `proc`Ginger Bill2017-10-011-1/+2
* Procedure literals for default values in structsGinger Bill2017-10-011-0/+1
* Fix union array bug (Issue #112)Ginger Bill2017-09-291-0/+7
* Fix struct #packed alignment calculationGinger Bill2017-08-121-6/+5
* Extra type safety; Fix typosGinger Bill2017-07-311-6/+6
* `transmute(type)x`; Minor code clean upGinger Bill2017-07-301-6/+11
* Remove dead code for the "fixed" map ideaGinger Bill2017-07-291-36/+11
* Fix map internal type generationGinger Bill2017-07-291-3/+3
* Merge branch 'master' of https://github.com/gingerBill/OdinGinger Bill2017-07-291-0/+4
|\
| * Fix IR print bug for empty structs;gingerBill2017-07-281-0/+4
* | Remove empty union check on array types; Fix overflowing error printingGinger Bill2017-07-291-14/+22
|/
* Fix struct parameter bugsGinger Bill2017-07-211-15/+15
* Internal changes; thread.odin for windows onlyGinger Bill2017-07-201-34/+36
* Fix polymorphic element types usage; Empty `union` as opaque typeGinger Bill2017-07-201-33/+27
* Make `fields` et al an Array rather than a raw pointerGinger Bill2017-07-201-27/+26
* Change internals from `Record` to `Struct`Ginger Bill2017-07-201-79/+75
* Update internals of a Union and TupleGinger Bill2017-07-201-31/+22
* Change union layout to store type info rather than an integer; ternary expres...Ginger Bill2017-07-191-4/+11
* Merge `raw_union` into `struct` as a memory layout tag `#raw_union`Ginger Bill2017-07-181-113/+81
* Remove `atomic`, `++`, and `--`Ginger Bill2017-07-181-23/+0
* General specialization for polymorphic parametersGinger Bill2017-07-181-1/+1
* Polymorphic type specialization for proceduresGinger Bill2017-07-171-5/+9