index
:
odin/Odin.git
bill/all_or_none
bill/any-type-switch-if-else
bill/change-license
bill/compiler-optimizations-2025-09
bill/conditional-zero
bill/const-union
bill/dir-organization
bill/disallow-128-bit
bill/fix-current-os-package
bill/fix-data-races-2026-02
bill/force-type-assert
bill/global-variable-distribution
bill/init-fini-changes
bill/integer-concatenation
bill/io-error-changes
bill/must-tail
bill/new-slice-sort
bill/range-init
bill/remove-test-suffix
bill/shared-partial-return-memory
bill/subtype-type-info
bill/typeid-sip-hash
bill/utf16-strings
core-flags
core_os2_revamp
custom-math-sin
fix-4225
llvm-12-support
master
middle-end
mimalloc
mv/libc-errors
new_os
orca-dev
text-template
update-tilde
windows-llvm-11.1.0
windows-llvm-12.0.1
windows-llvm-13.0.0
Odin Programming Language
Odin Lang
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix #1061
gingerBill
2021-08-09
1
-1
/
+20
*
Correct DllMain behaviour
gingerBill
2021-08-09
1
-3
/
+19
*
Correct and improve type inference for swizzling expressions
gingerBill
2021-08-09
2
-31
/
+26
*
Unify semantics of the built-in `swizzle` procedure with the selector express...
gingerBill
2021-08-09
6
-27
/
+174
*
Allow `len` and `cap` to return a `uint` if a type hint is `uint` to aid peop...
gingerBill
2021-08-09
1
-0
/
+10
*
Improve parsing handling for the `{ return }` cases
gingerBill
2021-08-09
1
-1
/
+12
*
Minor code changes to Map/StringMap
gingerBill
2021-08-09
2
-8
/
+7
*
Simplify `Map` and `StringMap` in the compiler to reuse the hashes' array dat...
gingerBill
2021-08-08
3
-37
/
+55
*
Correct error message for `add_import_dependency_node`
gingerBill
2021-08-08
1
-6
/
+2
*
Minor procedure rename
gingerBill
2021-08-08
2
-2
/
+2
*
Simplify `init_tokenizer_with_data`
gingerBill
2021-08-08
1
-4
/
+4
*
Reduce superfluous error messages for return statements expecting not-1 retur...
gingerBill
2021-08-07
2
-2
/
+20
*
Fix typo
gingerBill
2021-08-07
2
-12
/
+12
*
Inline heap_allocator resize logic on *nix platforms
gingerBill
2021-08-07
4
-61
/
+88
*
Minor test on `array_set_capacity`
gingerBill
2021-08-07
1
-1
/
+4
*
Minor clean-up
gingerBill
2021-08-07
3
-14
/
+17
*
Improve and simplify the memory layout of `MPMCQueue`
gingerBill
2021-08-07
3
-51
/
+76
*
Remove dead code in queue.cpp; clean up initialization code
gingerBill
2021-08-07
1
-86
/
+31
*
Reorganize llvm_backend.cpp into separate files for easier maintenance
gingerBill
2021-08-07
11
-14673
/
+14677
*
Fix #1070
gingerBill
2021-08-07
1
-3
/
+5
*
Reallow `using` on enum declarations temporarily but with a warning.
gingerBill
2021-08-05
1
-1
/
+1
*
Disallow `using` on an enum declaration.
gingerBill
2021-08-05
1
-0
/
+3
*
Improve core:odin/parser
gingerBill
2021-08-04
1
-2
/
+2
*
Remove dead comments
gingerBill
2021-08-04
1
-6
/
+1
*
Improve error message when using a comma rather than a semicolon in a `bit_set`
gingerBill
2021-08-03
1
-0
/
+6
*
Fix typo
gingerBill
2021-08-03
1
-2
/
+2
*
Add extra `debugf` message for generate missing procedure
gingerBill
2021-08-03
1
-0
/
+1
*
Remove debug `gb_printf_err` and replace with `debugf`
gingerBill
2021-08-03
1
-4
/
+6
*
Reorganize `missing_procedures_to_check` generation code
gingerBill
2021-08-03
1
-4
/
+8
*
Add `missing_procedures_to_check` to `lbModule`
gingerBill
2021-08-03
2
-47
/
+66
*
Add sanity check in `lb_create_procedure`
gingerBill
2021-08-03
1
-1
/
+4
*
Reorganize stages in checker
gingerBill
2021-08-03
1
-3
/
+3
*
Reorganize some of the checker stages
gingerBill
2021-08-03
1
-15
/
+18
*
Remove optimizations in tokenizer and default to older code (same logic) (opt...
gingerBill
2021-08-03
1
-45
/
+2
*
Sort files by name in packages
gingerBill
2021-08-02
1
-0
/
+10
*
Add sanity checks to checker
dev-2021-08
gingerBill
2021-08-02
2
-15
/
+21
*
Add `@(warning=<string>)`
gingerBill
2021-08-02
4
-0
/
+21
*
Prepare tokenizer for optimizations
gingerBill
2021-08-02
2
-21
/
+37
*
Remove the literal conversion logic to the parser from the tokenizer
gingerBill
2021-08-02
4
-44
/
+44
*
Replace `line` with `column_minus_one` in `Tokenizer`; Remove dead code
gingerBill
2021-08-02
1
-45
/
+26
*
Begin optimizing tokenizer; Replace `gb_utf8_decode` with `utf8_decode` (CC b...
gingerBill
2021-08-01
9
-44
/
+169
*
Clean up a bit of the tokenizer code so that the semicolon insertion rules ar...
gingerBill
2021-08-01
1
-127
/
+142
*
Give `begin_error_block` its own recursive mutex
gingerBill
2021-07-29
2
-3
/
+5
*
Modify MPMCQueue behaviour to use `i32` over `isize`; Correct cache line padd...
gingerBill
2021-07-28
2
-35
/
+46
*
Add mutex for `@(builtin)` attributes
gingerBill
2021-07-28
2
-14
/
+21
*
EXPERIMENT: Set `DEFAULT_TO_THREADED_CHECKER` on all platforms
gingerBill
2021-07-27
1
-2
/
+2
*
Use `DEFAULT_TO_THREADED_CHECKER`
gingerBill
2021-07-27
2
-3
/
+8
*
Add accidentally removed call
gingerBill
2021-07-27
1
-0
/
+3
*
Correct race condition on untyped expr info map logic on global evaluations
gingerBill
2021-07-27
2
-26
/
+67
*
Define which mutexes are blocking and recursive explicitly
gingerBill
2021-07-27
14
-133
/
+151
[next]