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
/
check_decl.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fix min dep type info problem caused by const ref of `map_set`
gingerBill
2023-01-04
1
-0
/
+29
*
Move walking of dependencies for procedures to just before calculating the mi...
gingerBill
2023-01-04
1
-31
/
+0
*
Use `RwMutex` for `DeclInfo` `deps
gingerBill
2023-01-03
1
-10
/
+17
*
Use `RwMutex` for the `Scope`
gingerBill
2023-01-03
1
-4
/
+8
*
More `for_array(i, y)` to `for (x : y)` translations
gingerBill
2023-01-03
1
-16
/
+11
*
Allow all set entry types to be implicitly cast to their key/value type to al...
gingerBill
2023-01-03
1
-4
/
+2
*
Use heap_allocator for all hash set types
gingerBill
2023-01-03
1
-1
/
+1
*
Use a package local mutex for `add_type_and_value`
gingerBill
2023-01-02
1
-3
/
+6
*
Remove loops within futex signals on Linux
gingerBill
2023-01-02
1
-1
/
+1
*
Remove another use of a global mutex
gingerBill
2023-01-02
1
-7
/
+12
*
Correct a race condition when checking the procedure body
gingerBill
2023-01-02
1
-11
/
+14
*
Remove use of queues for procedure checking.
gingerBill
2023-01-02
1
-1
/
+1
*
Remove a few `TODO`s
gingerBill
2022-12-22
1
-8
/
+0
*
Remove dead code in the compiler
gingerBill
2022-12-18
1
-10
/
+0
*
Add `gb_internal` to checker
gingerBill
2022-12-18
1
-22
/
+22
*
Replace compiler for loops for the hash-table types to simplify code usage
gingerBill
2022-12-09
1
-6
/
+6
*
Naïve optimization of named _split_ multiple return valued when `defer` is n...
gingerBill
2022-11-25
1
-0
/
+5
*
Improve error messages with 'using _'
Lucas Perlind
2022-10-15
1
-0
/
+5
*
Add `#soa` pointer type to aid with refactoring to `#soa` data types
gingerBill
2022-08-08
1
-1
/
+1
*
Correct `@(require_results)` on parapoly procedures
gingerBill
2022-05-30
1
-4
/
+6
*
`@(require_target_feature=<string>)` `@(enable_target_feature=<string>)`
gingerBill
2022-05-30
1
-0
/
+12
*
Add `simd_to_bits`; correct fix typo causing issue with parapoly
gingerBill
2022-05-26
1
-4
/
+4
*
Make `#simd` an opaque type
gingerBill
2022-05-25
1
-7
/
+13
*
Correct `foreign import` prefix behaviour for wasm
gingerBill
2022-05-06
1
-11
/
+9
*
Add `intrinsics.wasm_memory_grow` `intrinsics.wasm_memory_size`
gingerBill
2022-03-30
1
-1
/
+3
*
Fix `#1609`
gingerBill
2022-03-14
1
-0
/
+6
*
Disallow `@(thread_local)` on wasm targets
gingerBill
2022-02-28
1
-0
/
+4
*
Commit rest of code for `-disallow-rtti`
gingerBill
2022-02-28
1
-0
/
+2
*
Show error message when something like this is done `test: proc() : {}`
gingerBill
2022-02-28
1
-0
/
+4
*
Change objc_class_name to objc_name with objc_is_class_method
gingerBill
2022-02-14
1
-13
/
+11
*
Add more objc attributes
gingerBill
2022-02-11
1
-0
/
+63
*
Begin work on support objc intrinsics
gingerBill
2022-02-08
1
-0
/
+3
*
Change behaviour of `A :: distinct Enum_Type` to be more intuitive
gingerBill
2022-02-05
1
-1
/
+50
*
Only check idents in the alias (of alias)+ problem
gingerBill
2022-02-04
1
-1
/
+1
*
Correct the type aliasing problem, caused by aliases (of aliases)+
gingerBill
2022-02-04
1
-0
/
+1
*
Fix type alias declaration evaluation problem (#854 #1439)
gingerBill
2022-02-03
1
-1
/
+38
*
Begin work to move entry point code to Odin itself rather than in C++ side
gingerBill
2022-01-12
1
-16
/
+20
*
Disable `DEFAULT_TO_THREADED_CHECKER` until race condition is found
gingerBill
2022-01-11
1
-5
/
+4
*
Add mutex guards for signature scopes
gingerBill
2022-01-10
1
-1
/
+1
*
Remove `scope` field from `Ast`
gingerBill
2021-11-14
1
-3
/
+0
*
`@(linkage=<string>)` for procedures and variables; `@(require)` for procedur...
gingerBill
2021-11-04
1
-1
/
+17
*
Correct assertion usage
gingerBill
2021-11-03
1
-2
/
+3
*
Improve `wasm-import` semantics to allow procedures from different import paths
gingerBill
2021-11-02
1
-4
/
+25
*
Compile `wasm64`; Add `lb_run_remove_unused_function_pass`
gingerBill
2021-10-31
1
-0
/
+8
*
Add @(init) attribute for procedures, allowing for procedures to be called at...
gingerBill
2021-10-03
1
-0
/
+3
*
Correct procedure checking flag handling, and correct the (bodge) handle of u...
gingerBill
2021-08-23
1
-1
/
+15
*
Update `signature_parameter_similar_enough` for multi pointers
gingerBill
2021-08-22
1
-2
/
+14
*
Fix race condition from `add_entity_use` due to Entity.identifier
gingerBill
2021-08-19
1
-6
/
+6
*
Remove unused code
gingerBill
2021-08-19
1
-2
/
+1
*
Add mutex to Scope lookups and insertions
gingerBill
2021-08-18
1
-0
/
+2
[prev]
[next]