aboutsummaryrefslogtreecommitdiff
path: root/src/ir_print.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Remove `u128` and `i128`gingerBill2018-01-131-7/+5
* "Fix" LLVM boolean bug (more like a bodge)gingerBill2017-12-221-24/+14
* `map` is internally backed by a pointer (i.e. a "reference type")gingerBill2017-12-171-2/+2
* Change how abs, min, max, and clamp are implemented for floatsgingerBill2017-12-111-11/+11
* Remove dead codegingerBill2017-12-031-0/+1
* Fix union_tag_size; Fix constant array of array literal printing with scalar ...gingerBill2017-12-031-6/+21
* Remove `vector` type (will be replaced by something else in the future)gingerBill2017-11-301-54/+0
* Remove `using` in arrays; Remove `_` non-exported struct fieldsgingerBill2017-11-281-2/+0
* New slice memory layout (ptr+len); `byte`gingerBill2017-11-261-1/+1
* Changed `string_has_extension` to `string_ends_with`.Zachary Pierson2017-11-211-1/+1
* Remove target triple from windowsgingerBill2017-11-191-1/+1
* Fix debug symbol generationgingerBill2017-11-191-11/+13
* Add `-debug` command (still in development)gingerBill2017-11-191-32/+34
* Begin with on debugging symbol; fix version number 0.7.0gingerBill2017-11-191-93/+128
* Custom thread local modelsgingerBill2017-11-031-2/+8
* Add string_set.cpp; Code clean upgingerBill2017-10-301-8/+9
* Attributes; @(link_name="foo")gingerBill2017-10-291-8/+9
* #alias type declarations; core library additions; `_global` import name for t...gingerBill2017-10-291-0/+3
* Fix enum iteration (issue #126)gingerBill2017-10-181-3/+4
* `foreign export` blockgingerBill2017-10-151-3/+7
* Fix minimal dependency generation for polymorphic structs (related to issue #...gingerBill2017-10-151-1/+3
* Union tag stored as an integerGinger Bill2017-10-081-1/+2
* "Constant" procedure values for default values in structsGinger Bill2017-10-011-2/+10
* Procedure literals for default values in structsGinger Bill2017-10-011-42/+95
* Fix cyclic polymorphic struct bug #111Ginger Bill2017-10-011-3/+9
* Fix union array bug (Issue #112)Ginger Bill2017-09-291-1/+1
* Fix issue #106Ginger Bill2017-09-251-1/+6
* IR Fix for UnionTagValueGinger Bill2017-08-281-3/+2
* v0.6.2; Use Ada_Case for typesv0.6.2Ginger Bill2017-08-031-3/+34
* Extra type safety; Fix typosGinger Bill2017-07-311-1/+1
* Speed up llvm ir printing; Use CRITICAL_SECTION for Mutex on windowsGinger Bill2017-07-301-373/+385
* `transmute(type)x`; Minor code clean upGinger Bill2017-07-301-21/+7
* Remove dead code for the "fixed" map ideaGinger Bill2017-07-291-0/+1
* Merge branch 'master' of https://github.com/gingerBill/OdinGinger Bill2017-07-291-13/+17
|\
| * Fix IR print bug for empty structs;gingerBill2017-07-281-4/+8
| * Fix import name exportation bug; Fix procedure type printinggingerBill2017-07-241-9/+9
* | Remove empty union check on array types; Fix overflowing error printingGinger Bill2017-07-291-1/+1
|/
* Fix polymorphic element types usage; Empty `union` as opaque typeGinger Bill2017-07-201-14/+15
* Make `fields` et al an Array rather than a raw pointerGinger Bill2017-07-201-4/+4
* Change internals from `Record` to `Struct`Ginger Bill2017-07-201-26/+26
* Update internals of a Union and TupleGinger Bill2017-07-201-13/+9
* Change union layout to store type info rather than an integer; ternary expres...Ginger Bill2017-07-191-1/+2
* Merge `raw_union` into `struct` as a memory layout tag `#raw_union`Ginger Bill2017-07-181-9/+8
* Remove `atomic`, `++`, and `--`Ginger Bill2017-07-181-10/+7
* Ignore missing default values for struct literals at the endGinger Bill2017-07-181-15/+16
* Allow undefined --- as a struct field default value.Ginger Bill2017-07-181-7/+17
* Default struct field valuesGinger Bill2017-07-181-36/+101
* Rudimentary support for parametric polymorphic typesGinger Bill2017-07-131-1/+1
* Change precedence order for types e.g. ^T(x) == ^(T(x))Ginger Bill2017-07-131-2/+1
* Compiler Internal Changes: TypeRecord_Union -> Type_UnionGinger Bill2017-07-101-23/+20