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
*
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
*
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
*
Add sanity checks to checker
dev-2021-08
gingerBill
2021-08-02
1
-3
/
+0
*
Add `@(warning=<string>)`
gingerBill
2021-08-02
1
-0
/
+1
*
Define which mutexes are blocking and recursive explicitly
gingerBill
2021-07-27
1
-2
/
+2
*
INTERNAL USE ONLY: `//+lazy` build flag
gingerBill
2021-07-25
1
-53
/
+48
*
Remove dead code
gingerBill
2021-07-15
1
-4
/
+0
*
Replace non-recursive mutexes with `BlockingMutex`; Minor improves to initial...
gingerBill
2021-07-14
1
-6
/
+6
*
Reduce mutex usage and convert things to queues from arrays
gingerBill
2021-07-13
1
-3
/
+1
*
Big improvement to the `-threaded-checker` code, unifying the logic and simpl...
gingerBill
2021-07-13
1
-2
/
+1
*
Add experimental support for a threaded semantic checker to `-threaded-checker`
gingerBill
2021-07-10
1
-1
/
+2
*
Move things around for sanity checking for multithread preparation
gingerBill
2021-07-10
1
-3
/
+15
[next]