| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | v0.12.0v0.12.0 | gingerBill | 2020-01-18 | 1 | -1/+1 |
| | | |||||
| * | Remove debug printing | gingerBill | 2020-01-18 | 1 | -1/+1 |
| | | |||||
| * | Begin work on `-target:windows_386` | gingerBill | 2020-01-18 | 3 | -56/+126 |
| | | |||||
| * | Fix microsoft_craziness.h to work correctly | gingerBill | 2020-01-18 | 2 | -9/+55 |
| | | |||||
| * | Add suggestions for indexing constant values with a variable index | gingerBill | 2020-01-18 | 1 | -0/+2 |
| | | |||||
| * | Fix microsoft_craziness.h | gingerBill | 2020-01-18 | 1 | -104/+97 |
| | | |||||
| * | Add new intrinsics for polymorphic records: | gingerBill | 2020-01-18 | 3 | -13/+123 |
| | | | | | type_is_specialized_polymorphic_record, type_is_unspecialized_polymorphic_record, type_polymorphic_record_parameter_count, type_polymorphic_record_parameter_value | ||||
| * | Add intrinsics.type_is_specialization_of | gingerBill | 2020-01-17 | 4 | -1/+37 |
| | | |||||
| * | Allow not_in as keyword over notin, but still allow notin to work | gingerBill | 2020-01-16 | 9 | -30/+31 |
| | | |||||
| * | Merge remote-tracking branch 'origin/master' | gingerBill | 2020-01-16 | 3 | -6/+61 |
| |\ | |||||
| | * | Fix #536 | gingerBill | 2020-01-15 | 1 | -5/+11 |
| | | | |||||
| | * | Fix #540 | gingerBill | 2020-01-15 | 1 | -1/+2 |
| | | | |||||
| | * | Add debug info for enumerated arrays | gingerBill | 2020-01-14 | 1 | -0/+14 |
| | | | |||||
| | * | Exact value zero value for `T{}` of basic types | gingerBill | 2020-01-14 | 1 | -0/+27 |
| | | | |||||
| | * | Merge branch 'master' of https://github.com/odin-lang/Odin | gingerBill | 2020-01-12 | 3 | -15/+51 |
| | |\ | |||||
| | * | | Add extra check for opaque types | gingerBill | 2020-01-12 | 1 | -0/+7 |
| | | | | |||||
| * | | | Fix constant slice checking, again | gingerBill | 2020-01-16 | 1 | -1/+1 |
| | |/ |/| | |||||
| * | | Fix Proc Type ABI printing on System V | gingerBill | 2020-01-12 | 3 | -15/+51 |
| |/ | |||||
| * | Add extra set_procedure_abi_types sanity checks in IR | gingerBill | 2020-01-11 | 1 | -0/+4 |
| | | |||||
| * | Fix len of type bug | gingerBill | 2020-01-11 | 2 | -2/+7 |
| | | |||||
| * | Merge branch 'master' of https://github.com/odin-lang/Odin | gingerBill | 2020-01-11 | 0 | -0/+0 |
| |\ | |||||
| | * | Fix #521 Explicit `union` tag values | gingerBill | 2020-01-11 | 1 | -6/+6 |
| | | | |||||
| * | | Fix `@thread_local` IR printing | gingerBill | 2020-01-11 | 1 | -6/+6 |
| |/ | |||||
| * | Improve runtime/default_allocators.odin | gingerBill | 2020-01-11 | 1 | -2/+21 |
| | | |||||
| * | Merge branch 'master' of https://github.com/odin-lang/Odin | gingerBill | 2020-01-11 | 1 | -2/+1 |
| |\ | |||||
| | * | Merge pull request #534 from ThisDrunkDane/fix-log-mistake | Mikkel Hjortshøj | 2020-01-09 | 1 | -2/+1 |
| | |\ | | | | | | | Fix mistake in .Short_File_Path option in file_console_logger.odin | ||||
| | | * | Don't change delimiter as location has changed to be unified no matter the ↵ | Mikkel Hjortshoej | 2020-01-08 | 1 | -2/+1 |
| | |/ | | | | | | | platform | ||||
| * / | Fix Panic with runtime.type_info_base #532 | gingerBill | 2020-01-11 | 1 | -2/+6 |
| |/ | |||||
| * | Fix typo | gingerBill | 2020-01-05 | 1 | -1/+1 |
| | | |||||
| * | Improve minimum dependency for complex numbers and quaternion numbers. | gingerBill | 2020-01-04 | 3 | -9/+19 |
| | | |||||
| * | Make "none" calling convention ignore return_by_pointer flag | gingerBill | 2020-01-04 | 1 | -0/+3 |
| | | |||||
| * | Add extra in set_procedure_abi_types ir_print.cpp | gingerBill | 2020-01-04 | 1 | -0/+2 |
| | | |||||
| * | Remove -Wno-writable-strings | gingerBill | 2020-01-04 | 3 | -3/+3 |
| | | |||||
| * | Merge pull request #531 from Tetralux/fix-make-and-reserve | gingerBill | 2020-01-03 | 2 | -2/+6 |
| |\ | | | | | Fix make and reserve | ||||
| | * | Fix make and reserve | Tetralux | 2020-01-03 | 2 | -2/+6 |
| |/ | | | | | | | | | | | | | | | - Set the allocator, even if memory allocation fails. Right now it doesn't, which means that if allocation fails, it'll use the context allocator instead. This memory will be leaked if the user doesn't understand that this happened. - Only set len and cap of the array returned from make iif the memory allocation succeeded. This means that reserve will return false if you do this: ``` a := make([dynamic]int, failing_allocator); if !reserve(&a, 5) do return; // or whatever indicates failure ``` | ||||
| * | Fix behaviour for `make` to return `nil` when alloc returns `nil` | gingerBill | 2020-01-03 | 2 | -0/+4 |
| | | |||||
| * | Merge pull request #530 from KTRosenberg/unix_yield_sem_fix | gingerBill | 2020-01-03 | 6 | -7/+18 |
| |\ | | | | | Fixes for yielding and semaphore posting on unix | ||||
| | * | added note about pthread_yield | KTRosenberg | 2020-01-02 | 1 | -0/+2 |
| | | | |||||
| | * | added the demo to the gitignore | KTRosenberg | 2020-01-02 | 1 | -1/+2 |
| | | | |||||
| | * | replaced pthread_yield with ssched_yield, fixed semaphore post:q | KTRosenberg | 2020-01-02 | 5 | -6/+14 |
| |/ | |||||
| * | Fix typo | gingerBill | 2020-01-02 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'master' of https://github.com/odin-lang/Odin | gingerBill | 2020-01-02 | 1 | -1/+1 |
| |\ | |||||
| | * | Merge pull request #529 from Tetralux/patch-1 | gingerBill | 2020-01-02 | 1 | -1/+1 |
| | |\ | | | | | | | Fix `append_string` | ||||
| | | * | Fix `append_string` | Tetralux | 2020-01-02 | 1 | -1/+1 |
| | |/ | |||||
| * / | Add `thread.Pool` with example in demo.odin; Update linalg to support ↵ | gingerBill | 2020-01-02 | 8 | -37/+238 |
| |/ | | | | handness changes for projection matrices | ||||
| * | Add `x y z w` fields to quaternion types; Improve linalg quaternion mathematics | gingerBill | 2020-01-01 | 5 | -63/+300 |
| | | |||||
| * | Merge pull request #528 from oskarnp/foreign-dylib-fix | gingerBill | 2020-01-01 | 1 | -1/+1 |
| |\ | | | | | Fix dylib foreign import | ||||
| | * | Fix dylib foreign import | oskarn | 2020-01-01 | 1 | -1/+1 |
| |/ | |||||
| * | Fix typeid information for enumerated arrays | gingerBill | 2019-12-31 | 2 | -20/+21 |
| | | |||||
| * | Fix memset for unix | gingerBill | 2019-12-31 | 1 | -2/+2 |
| | | |||||