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_stmt.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Merge branch 'master' into bill/feature-using-stmt
gingerBill
2026-01-30
1
-1
/
+3
|
\
|
*
Allow #unroll for arrays of fixed length which are not constants
gingerBill
2026-01-28
1
-1
/
+3
*
|
Make `using` as a statement an opt-in with `#+feature using-stmt`
gingerBill
2025-12-21
1
-3
/
+5
|
/
*
Fix #5982
Jeroen van Rijn
2025-12-01
1
-0
/
+4
*
And extra safety checks
gingerBill
2025-09-27
1
-2
/
+9
*
Make return struct with slice check recursive
Jwaxy
2025-09-27
1
-69
/
+66
*
Prevent returning struct containing compound literal slice
Jwaxy
2025-09-27
1
-0
/
+14
*
Minimize mutex usage when in single threaded mode.
gingerBill
2025-09-10
1
-5
/
+7
*
Minimize more thread contention
gingerBill
2025-09-10
1
-2
/
+3
*
Minor clean up of permanent/temporary arena usage
gingerBill
2025-09-10
1
-1
/
+1
*
`for in string16`; Support `string16` across core
gingerBill
2025-08-02
1
-3
/
+23
*
Remove the semantics of `#no_copy`, keep the grammar
gingerBill
2025-07-30
1
-2
/
+0
*
Fix #5447
Jeroen van Rijn
2025-07-09
1
-0
/
+4
*
Fix an oversight for operators with more than 2 chars
Airtz
2025-06-24
1
-2
/
+1
*
Better error messages
Airtz
2025-06-24
1
-9
/
+11
*
Be strict with type switch case column alignment too
Feoramund
2025-06-04
1
-0
/
+14
*
Fix #5228
gingerBill
2025-05-29
1
-0
/
+1
*
CHECK 4 done
bogwi
2025-05-05
1
-0
/
+2
*
Add trivial sanity check for assigning to return values within `defer` #5011
gingerBill
2025-04-07
1
-0
/
+41
*
Use `TypeSet` instead of `PtrSet<Type *>`
gingerBill
2025-02-20
1
-4
/
+4
*
`#unroll(N) for`
gingerBill
2025-01-10
1
-6
/
+59
*
Fix #4552
gingerBill
2024-12-05
1
-0
/
+1
*
Fix #4561
gingerBill
2024-12-05
1
-0
/
+1
*
Add warning for `unsigned >= 0` like conditions in a `for` loop
gingerBill
2024-10-30
1
-0
/
+17
*
Fix minor bug with addressability
gingerBill
2024-09-17
1
-4
/
+14
*
Fix #4132
gingerBill
2024-08-24
1
-1
/
+2
*
Disallow labelled branches in `defer` - fix #3960
gingerBill
2024-08-24
1
-0
/
+8
*
Fix #3999
gingerBill
2024-08-18
1
-1
/
+2
*
Fix #4005
gingerBill
2024-08-18
1
-1
/
+5
*
Fix #4022
gingerBill
2024-08-18
1
-1
/
+1
*
Fix #4040
gingerBill
2024-08-18
1
-0
/
+10
*
Error if assigning to `rodata` variable with index
Davi
2024-08-13
1
-1
/
+8
*
Check to see if people are return a slice of a local fixed array from a proce...
gingerBill
2024-07-22
1
-1
/
+9
*
Add NULL check in check_range_stmt
Jeroen van Rijn
2024-07-21
1
-1
/
+1
*
Fix compiler crash when switching on no value
Feoramund
2024-07-14
1
-0
/
+3
*
Improve warning handling for possible `default:` typo
gingerBill
2024-07-10
1
-0
/
+6
*
`-strict-style`: enforce `case` to be in the same column as `switch`
gingerBill
2024-06-29
1
-0
/
+14
*
Add `intrinsics.procedure_of`
gingerBill
2024-06-10
1
-1
/
+9
*
Add error message on return a constant slice value from a procedure
gingerBill
2024-06-08
1
-0
/
+4
*
Remove empty line preventing a suggestion from happening
gingerBill
2024-06-08
1
-2
/
+0
*
Allow `@(rodata)` on `@(static)` variables
gingerBill
2024-06-06
1
-1
/
+5
*
Add `@(rodata)`
gingerBill
2024-06-06
1
-0
/
+6
*
Add `@(link_suffix=<string>)`
gingerBill
2024-05-30
1
-2
/
+2
*
Add shadow suggestion
gingerBill
2024-05-22
1
-1
/
+5
*
Fix `for &v in &fixed_array`
gingerBill
2024-05-20
1
-1
/
+2
*
Fix error reporting for enforce new switch/for syntax
gingerBill
2024-05-16
1
-2
/
+2
*
Remove the old switch/for semantics entirely and enforce `switch &x in y`
gingerBill
2024-05-16
1
-28
/
+2
*
Fix #3587
gingerBill
2024-05-14
1
-1
/
+28
*
Attempt at fixing #3588
gingerBill
2024-05-14
1
-0
/
+2
*
Fix #3569
gingerBill
2024-05-13
1
-1
/
+1
[next]