| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix issue #51; begin work on `atomic` types | Ginger Bill | 2017-04-28 | 1 | -3/+43 |
| * | `fmt.String_Buffer`, Fix issue #44, Tweak overloading rules | Ginger Bill | 2017-04-26 | 1 | -0/+14 |
| * | Swap memory layout of `any` | Ginger Bill | 2017-04-23 | 1 | -11/+13 |
| * | Fix `find_using_index_expr` | Ginger Bill | 2017-04-23 | 1 | -3/+11 |
| * | Continue work on custom SSA; Fix double declaration in `when` statements | Ginger Bill | 2017-04-21 | 1 | -152/+1 |
| * | Change Union representation for LLVM IR; fix dynamic array size | Ginger Bill | 2017-04-19 | 1 | -2/+4 |
| * | Fix bug with union literal checking crashing the compiler | Ginger Bill | 2017-04-18 | 1 | -4/+13 |
| * | Add `#require_results` for procedures | Ginger Bill | 2017-04-16 | 1 | -0/+1 |
| * | IR emit C ABI compatible types for calling conventions (Only for x86/amd64 li... | Ginger Bill | 2017-04-16 | 1 | -0/+2 |
| * | Add parse_int; Fix union bugs with size, alignment, and recursive definition ... | Ginger Bill | 2017-04-14 | 1 | -9/+50 |
| * | Basic Linux Build! | Ginger Bill | 2017-04-09 | 1 | -3/+3 |
| * | Merge pull request #33 from zangent/master | gingerBill | 2017-04-09 | 1 | -1/+0 |
| |\ |
|
| | * | Merge https://github.com/gingerBill/Odin | Zachary Pierson | 2017-04-03 | 1 | -3/+18 |
| | |\ |
|
| | * \ | Merge https://github.com/gingerBill/Odin | Zachary Pierson | 2017-04-02 | 1 | -72/+134 |
| | |\ \ |
|
| | * \ \ | Merge https://github.com/gingerBill/Odin, cleaned up a bit, fixed the object ... | Zachary Pierson | 2017-03-30 | 1 | -17/+6 |
| | |\ \ \ |
|
| | * | | | | Forgot to include stdio.h since Win32 won't resolve it otherwise. | Zachary Pierson | 2017-03-21 | 1 | -1/+1 |
| | * | | | | Merge https://github.com/gingerBill/Odin | Zac Pierson | 2017-03-21 | 1 | -13/+31 |
| | |\ \ \ \ |
|
| * | | | | | | Move to `Raw_*` types to raw.odin; Add size and align members to Type_Info | Ginger Bill | 2017-04-07 | 1 | -2/+0 |
| | |_|_|_|/
|/| | | | |
|
| * | | | | | len, cap, make; remove .count, .capacity, new_slice | Ginger Bill | 2017-04-02 | 1 | -3/+18 |
| | |_|_|/
|/| | | |
|
| * | | | | Add Quaternions: quaternion128, quaternion256 | Ginger Bill | 2017-04-01 | 1 | -61/+97 |
| * | | | | Complex numbers: complex64 complex128 | Ginger Bill | 2017-04-01 | 1 | -30/+56 |
| | |_|/
|/| | |
|
| * | | | v0.1.3v0.1.3 | Ginger Bill | 2017-03-27 | 1 | -2/+6 |
| | |/
|/| |
|
| * | | Update gb.h | Ginger Bill | 2017-03-17 | 1 | -11/+15 |
| * | | Refactoring of code: remove `make` prefix on many procedures | Ginger Bill | 2017-03-05 | 1 | -2/+2 |
| |/ |
|
| * | Allow pointers to `append`; Fix strconv stuff; `new_slice` allows for capacity | Ginger Bill | 2017-03-02 | 1 | -4/+1 |
| * | Slices now have a capacity. | Ginger Bill | 2017-02-26 | 1 | -11/+24 |
| * | v0.1.1v0.1.1 | Ginger Bill | 2017-02-24 | 1 | -19/+19 |
| * | A decent union type with common fields and variants | Ginger Bill | 2017-02-21 | 1 | -25/+83 |
| * | Fix overloading bug due to comparison of named types | Ginger Bill | 2017-02-18 | 1 | -14/+22 |
| * | Fix immutable rules; add some general documentation | Ginger Bill | 2017-02-14 | 1 | -8/+9 |
| * | Use a global to store the build context information | Ginger Bill | 2017-02-12 | 1 | -86/+75 |
| * | Record type field `names` | Ginger Bill | 2017-02-12 | 1 | -3/+5 |
| * | Only check files that have been truly imported. | Ginger Bill | 2017-02-11 | 1 | -5/+9 |
| * | Remove Maybe type; Enum `names` | Ginger Bill | 2017-02-10 | 1 | -60/+31 |
| * | Fix global maps and initialize the preload types before | Ginger Bill | 2017-02-07 | 1 | -0/+8 |
| * | Map type info and fmt printing | Ginger Bill | 2017-02-07 | 1 | -4/+4 |
| * | `map` immutable fields: count, capacity, allocator | Ginger Bill | 2017-02-06 | 1 | -1/+35 |
| * | Nearly implement dynamics map, missing insertion | Ginger Bill | 2017-02-06 | 1 | -1/+4 |
| * | Begin writing dynamic map procs and fix `using` bug in IR | Ginger Bill | 2017-02-05 | 1 | -0/+4 |
| * | Add `types.odin`; Begin work on `map` | Ginger Bill | 2017-02-05 | 1 | -27/+112 |
| * | Custom struct alignment | Ginger Bill | 2017-02-05 | 1 | -0/+5 |
| * | Update code from OSX merge to be consistent with the rest of the code | Ginger Bill | 2017-02-01 | 1 | -3/+2 |
| * | Merge branch 'master' of https://github.com/zhiayang/Odin | zhiayang | 2017-02-02 | 1 | -10/+50 |
| |\ |
|
| | * | Change internals of `context`; Disable `immutable` | Ginger Bill | 2017-02-01 | 1 | -10/+50 |
| * | | oh boy, basic osx/unix support | zhiayang | 2017-02-02 | 1 | -1/+1 |
| |/ |
|
| * | Change vector memory layout and operations; `for in` vector. | Ginger Bill | 2017-01-30 | 1 | -39/+58 |
| * | Dynamic arrays | Ginger Bill | 2017-01-29 | 1 | -1/+71 |
| * | Fix parsing for block/if expression within if/for/etc. statementsv0.0.6 | Ginger Bill | 2017-01-27 | 1 | -1/+3 |
| * | Change casting syntax: `cast(T)x` `transmute(T)x` et al. | Ginger Bill | 2017-01-25 | 1 | -2/+2 |
| * | Fix conversion of untyped integers to pointers | Ginger Bill | 2017-01-17 | 1 | -0/+45 |