| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix IR vector arith conv bug | Ginger Bill | 2017-05-01 | 1 | -0/+2 |
| * | Fix value conversion with enum value on `for in`. | Ginger Bill | 2017-05-01 | 1 | -2/+10 |
| * | `for in` iteration of Enum Type (request from issue #58) | Ginger Bill | 2017-05-01 | 1 | -2/+44 |
| * | Improve vector math; Make bprint* return string | Ginger Bill | 2017-05-01 | 1 | -5/+13 |
| * | Fix subtype polymorphism implicit conversion | Ginger Bill | 2017-04-30 | 1 | -17/+39 |
| * | Add type assertion for `any` | Ginger Bill | 2017-04-30 | 1 | -2/+70 |
| * | Syntax change: cast(T)x => T(x); union_cast(T)x => x.(T); transmute(T)x => tr... | Ginger Bill | 2017-04-30 | 1 | -59/+22 |
| * | Fix issue #51; begin work on `atomic` types | Ginger Bill | 2017-04-28 | 1 | -6/+15 |
| * | `fmt.String_Buffer`, Fix issue #44, Tweak overloading rules | Ginger Bill | 2017-04-26 | 1 | -10/+23 |
| * | Fix initialization of global `any` types | Ginger Bill | 2017-04-25 | 1 | -11/+57 |
| * | Swap memory layout of `any` | Ginger Bill | 2017-04-23 | 1 | -20/+18 |
| * | Fix `find_using_index_expr` | Ginger Bill | 2017-04-23 | 1 | -6/+28 |
| * | Internal change: IntervalExpr is now a BinaryExpr | Ginger Bill | 2017-04-22 | 1 | -6/+7 |
| * | Fix constant bounds checking for slicing | Ginger Bill | 2017-04-22 | 1 | -13/+2 |
| * | Continue work on custom SSA; Fix double declaration in `when` statements | Ginger Bill | 2017-04-21 | 1 | -0/+2 |
| * | Making slicing a little more robust | Ginger Bill | 2017-04-21 | 1 | -18/+32 |
| * | Interval expressions for match statements | Ginger Bill | 2017-04-21 | 1 | -2/+18 |
| * | Change interval syntax: .. open range, ..< half-closed range | Ginger Bill | 2017-04-20 | 1 | -1/+13 |
| * | Change Union representation for LLVM IR; fix dynamic array size | Ginger Bill | 2017-04-19 | 1 | -14/+2 |
| * | Fix bug with union literal checking crashing the compiler | Ginger Bill | 2017-04-18 | 1 | -5/+6 |
| * | Fix issue #37 for procedure literal scopes | Ginger Bill | 2017-04-16 | 1 | -1/+1 |
| * | Update ir type aggregate rules for transmute | Ginger Bill | 2017-04-16 | 1 | -1/+9 |
| * | Exit program if there were syntax errors | Ginger Bill | 2017-04-16 | 1 | -2/+2 |
| * | Calling convention, change from bitcast to transmute | Ginger Bill | 2017-04-16 | 1 | -1/+3 |
| * | Call convention, pass by pointer: pointers are 16 byte aligned | Ginger Bill | 2017-04-16 | 1 | -5/+12 |
| * | IR emit C ABI compatible types for calling conventions (Only for x86/amd64 li... | Ginger Bill | 2017-04-16 | 1 | -21/+80 |
| * | Add parse_int; Fix union bugs with size, alignment, and recursive definition ... | Ginger Bill | 2017-04-14 | 1 | -25/+30 |
| * | Fix addressing mode rules for `match in` statements | Ginger Bill | 2017-04-13 | 1 | -2/+11 |
| * | Fix fmt for type; remove dead stuff | Ginger Bill | 2017-04-13 | 1 | -5/+2 |
| * | Fix map bug which removed N values from the beginning | Ginger Bill | 2017-04-11 | 1 | -2/+5 |
| * | Fix `map` assignment bug due to growth | Ginger Bill | 2017-04-11 | 1 | -8/+10 |
| * | Fix slicing bug on dynamic arrays | Ginger Bill | 2017-04-11 | 1 | -12/+15 |
| * | Fix `append` crash when pointer is passed | Ginger Bill | 2017-04-10 | 1 | -3/+19 |
| * | Fix segfault with heap allocation | root | 2017-04-10 | 1 | -1/+1 |
| * | Basic Linux Build! | Ginger Bill | 2017-04-09 | 1 | -27/+11 |
| * | Merge pull request #33 from zangent/master | gingerBill | 2017-04-09 | 1 | -0/+6 |
| |\ |
|
| | * | Merged from upstream, fixed 'args' name colission | Zachary Pierson | 2017-04-06 | 1 | -0/+6 |
| * | | Move to `Raw_*` types to raw.odin; Add size and align members to Type_Info | Ginger Bill | 2017-04-07 | 1 | -46/+34 |
| |/ |
|
| * | Fix ir bugs: global variable names, untyped to any assignment | Ginger Bill | 2017-04-06 | 1 | -10/+27 |
| * | Fix issue #31; Removed `down_cast` | Ginger Bill | 2017-04-04 | 1 | -0/+4 |
| * | Update and regression test old demos | Ginger Bill | 2017-04-02 | 1 | -1/+11 |
| * | Fix make for dynamic arrays | Ginger Bill | 2017-04-02 | 1 | -1/+1 |
| * | len, cap, make; remove .count, .capacity, new_slice | Ginger Bill | 2017-04-02 | 1 | -9/+212 |
| * | Fix `conj` | Ginger Bill | 2017-04-01 | 1 | -2/+2 |
| * | Add Quaternions: quaternion128, quaternion256 | Ginger Bill | 2017-04-01 | 1 | -23/+250 |
| * | Complex numbers: complex64 complex128 | Ginger Bill | 2017-04-01 | 1 | -4/+129 |
| * | v0.1.3v0.1.3 | Ginger Bill | 2017-03-27 | 1 | -11/+35 |
| * | Multiple type cases for `match in` | Ginger Bill | 2017-03-19 | 1 | -130/+106 |
| * | Add named branches for match statements | Ginger Bill | 2017-03-19 | 1 | -45/+41 |
| * | Add branch labels for loops; using list | Ginger Bill | 2017-03-19 | 1 | -76/+184 |