| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix `ptr_to_bit_field.field` | gingerBill | 2024-04-10 | 1 | -1/+4 |
| | | |||||
| * | fix objc proc group edge case | Laytan Laats | 2024-04-03 | 1 | -2/+4 |
| | | | | | Fixes #2648 | ||||
| * | Support `for in` with `bit_set` | gingerBill | 2024-04-01 | 1 | -50/+52 |
| | | |||||
| * | Fix bounds checking | gingerBill | 2024-03-20 | 1 | -1/+4 |
| | | |||||
| * | `m[i]` on `#row_major` matrices will reduce the i-th row-vector | gingerBill | 2024-03-20 | 1 | -1/+7 |
| | | |||||
| * | Add `#row_major matrix[R, C]T` | gingerBill | 2024-03-19 | 1 | -10/+29 |
| | | | | | | As well as `#column_major matrix[R, C]T` as an alias for just `matrix[R, C]T`. This is because some libraries require a row_major internal layout but still want to be used with row or major oriented vectors. | ||||
| * | Support swizzle selector syntax `.xyzw` for `#simd` vectors | gingerBill | 2024-03-12 | 1 | -2/+2 |
| | | |||||
| * | Format change | gingerBill | 2024-02-22 | 1 | -8/+4 |
| | | |||||
| * | Check for pseudo-fields before bit fields | gingerBill | 2024-02-22 | 1 | -6/+8 |
| | | |||||
| * | Simplify usage code | gingerBill | 2024-02-22 | 1 | -3/+5 |
| | | |||||
| * | Support `using` of a `bit_field` within a `struct` | gingerBill | 2024-02-22 | 1 | -3/+11 |
| | | |||||
| * | Support compound literals for `bit_field` | gingerBill | 2024-02-22 | 1 | -0/+32 |
| | | |||||
| * | Allow casting between a `bit_field` and its backing type | gingerBill | 2024-02-22 | 1 | -0/+18 |
| | | |||||
| * | Add general support for `bit_field`s | gingerBill | 2024-02-22 | 1 | -0/+16 |
| | | |||||
| * | Fix dynamic array `index = value` with const `value` initializing to 0 | korvahkh | 2024-02-02 | 1 | -1/+1 |
| | | |||||
| * | fix wrong string type assert | Laytan Laats | 2023-12-20 | 1 | -1/+1 |
| | | | | | Fixes #2846 | ||||
| * | Add missing type information for soa structs | gingerBill | 2023-11-23 | 1 | -0/+6 |
| | | |||||
| * | Bodge: fix matrix_flatten issue in Win64 ABI | gingerBill | 2023-11-06 | 1 | -2/+19 |
| | | |||||
| * | Add missing calls | gingerBill | 2023-11-01 | 1 | -0/+3 |
| | | |||||
| * | Fix #2261 | gingerBill | 2023-09-30 | 1 | -2/+9 |
| | | |||||
| * | Fix `or_break` code generation issue | gingerBill | 2023-09-30 | 1 | -20/+10 |
| | | |||||
| * | Add `or_break` and `or_continue` constructs | gingerBill | 2023-09-30 | 1 | -0/+56 |
| | | |||||
| * | Merge branch 'master' into llvm-17 | gingerBill | 2023-09-27 | 1 | -1/+22 |
| |\ | |||||
| | * | Add `cstring` specific comparison procedures to fix comparisons like ↵ | gingerBill | 2023-09-26 | 1 | -1/+22 |
| | | | | | | | | | `cstring("") != cstring(nil)` | ||||
| * | | Update to LLVM-17 | gingerBill | 2023-09-19 | 1 | -1/+1 |
| |/ | |||||
| * | Remove #relative slices; Replace with #relative multi-pointers | gingerBill | 2023-08-05 | 1 | -15/+24 |
| | | |||||
| * | Fix to allow procedure groups on objective-c types | gingerBill | 2023-07-17 | 1 | -1/+2 |
| | | |||||
| * | Fix bug caused by incorrect assert | gingerBill | 2023-07-17 | 1 | -1/+1 |
| | | |||||
| * | Fix #2629 | gingerBill | 2023-07-07 | 1 | -2/+6 |
| | | |||||
| * | Fix `[2]union{T}` comparison against `nil` | gingerBill | 2023-07-07 | 1 | -2/+5 |
| | | |||||
| * | Add basic optimization for comparisons against the empty string `""` | gingerBill | 2023-06-14 | 1 | -1/+23 |
| | | |||||
| * | Rename `ODIN_DISALLOW_RTTI` to `ODIN_NO_RTTI`; Remove dead command line flags | gingerBill | 2023-06-12 | 1 | -3/+3 |
| | | |||||
| * | Fix non-constant compound literals of slices | gingerBill | 2023-06-07 | 1 | -2/+3 |
| | | |||||
| * | Merge branch 'master' into separate-int-word-sizes | gingerBill | 2023-06-06 | 1 | -53/+41 |
| |\ | |||||
| | * | Minor change to handling of propagation of errors with `---` as a value | gingerBill | 2023-05-22 | 1 | -8/+8 |
| | | | |||||
| | * | Enforce an `icmp` when casting to `i1` to correct behaviour for booleans ↵ | gingerBill | 2023-05-20 | 1 | -45/+32 |
| | | | | | | | | | which are not 0 or 1 | ||||
| | * | Fix #2544 | gingerBill | 2023-05-18 | 1 | -0/+1 |
| | | | |||||
| * | | Merge branch 'master' into separate-int-word-sizes | gingerBill | 2023-05-18 | 1 | -4/+6 |
| |\| | |||||
| | * | Zero non-diagonal elements when converting to matrix | J.C. Moyer | 2023-05-09 | 1 | -4/+6 |
| | | | | | | | | | Fixes #2056 | ||||
| * | | Merge branch 'master' into separate-int-word-sizes | gingerBill | 2023-05-03 | 1 | -1/+4 |
| |\| | |||||
| | * | Fix #2481 | gingerBill | 2023-04-27 | 1 | -1/+1 |
| | | | |||||
| | * | Fix #2487 | gingerBill | 2023-04-27 | 1 | -0/+3 |
| | | | |||||
| * | | Begin work on new pseudo-architecture: wasm64p32 | gingerBill | 2023-04-20 | 1 | -1/+1 |
| |/ | |||||
| * | Increase use of `temporary_allocator()` where possible | gingerBill | 2023-03-16 | 1 | -8/+23 |
| | | |||||
| * | Allow compound literals to access fields through `using` | gingerBill | 2023-02-26 | 1 | -4/+16 |
| | | |||||
| * | Allow comparisons between empty `struct{}` and `union{}` | gingerBill | 2023-02-17 | 1 | -0/+9 |
| | | |||||
| * | Fix overriding procedure information for literals | gingerBill | 2023-02-17 | 1 | -1/+1 |
| | | |||||
| * | Fix #2282 caused by a typo | gingerBill | 2023-01-20 | 1 | -3/+3 |
| | | |||||
| * | Fix #2264 | gingerBill | 2023-01-18 | 1 | -4/+4 |
| | | |||||
| * | Fix #2274 | gingerBill | 2023-01-18 | 1 | -0/+5 |
| | | |||||