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
...
*
Fix branch statements within inline for blocks (partial hack)
gingerBill
2020-03-15
1
-2
/
+2
*
Fix #578
gingerBill
2020-02-29
1
-0
/
+6
*
Improve error message on `using` with procedure parameters #568
gingerBill
2020-02-23
1
-1
/
+7
*
Support `for` and `inline for` for enumerated arrays
gingerBill
2019-12-27
1
-0
/
+11
*
Implement `#complete switch` by default, replace with `#partial switch` #511
gingerBill
2019-12-22
1
-33
/
+24
*
Also allow #no_bounds_check on an expression #499
gingerBill
2019-12-15
1
-13
/
+12
*
Fix Duplicate integer switch case values incorrectly consider its absolute va...
gingerBill
2019-12-15
1
-16
/
+19
*
Remove addressing mode `Addressing_Immutable`
gingerBill
2019-12-01
1
-11
/
+6
*
SOA Struct support `intrinsics.soa_struct`
gingerBill
2019-11-02
1
-0
/
+3
*
multivalued procedure calls allows in `for in` to allow a pseudo-iterator; `@...
gingerBill
2019-11-02
1
-1
/
+54
*
Fix range in statement bug caused by incorrectly assigned addressing mode #461
gingerBill
2019-11-02
1
-71
/
+5
*
Allow ranges for array-like compound literals
gingerBill
2019-10-26
1
-79
/
+5
*
Fix Compiler assertion when applying `using` to `_` procedure parameter. #451
gingerBill
2019-10-26
1
-4
/
+3
*
Fix #complete switch with pointer case doesn't compile #416
gingerBill
2019-10-05
1
-2
/
+2
*
Add suggestions to errors on casts and assignments.
gingerBill
2019-09-17
1
-1
/
+2
*
Fix global variable initialization ordering
gingerBill
2019-08-29
1
-1
/
+6
*
`inline for` loops (only for 'in' based for loops)
gingerBill
2019-08-26
1
-20
/
+252
*
Fix `~(1 << x)` type inference bug
gingerBill
2019-08-23
1
-1
/
+1
*
Make procedure parameters just named values rather than copied variables
gingerBill
2019-07-15
1
-0
/
+4
*
Fix unions with zero variants
gingerBill
2019-07-07
1
-5
/
+0
*
Fix comparison for bit field values #386
gingerBill
2019-06-21
1
-38
/
+12
*
Fix ranges in switch statement for strings
gingerBill
2019-06-21
1
-0
/
+7
*
Add `..<` operator for ranges; Add extra checking for bit set assignments
gingerBill
2019-05-28
1
-6
/
+16
*
odin query
gingerBill
2019-05-25
1
-6
/
+9
*
Allow booleans to be assigned to a 1-bit bit field value
gingerBill
2019-05-09
1
-0
/
+9
*
Improve type inference for variadic parameters
gingerBill
2019-05-04
1
-1
/
+1
*
Minor change to bit_field assignment rules
gingerBill
2019-05-04
1
-1
/
+1
*
Fix bug with assigning certain integers to a bit_field #353
gingerBill
2019-03-19
1
-1
/
+1
*
Improve package strings
gingerBill
2019-03-15
1
-1
/
+2
*
Allow implicit selector expressions in switch statements
gingerBill
2019-03-06
1
-3
/
+3
*
Make `static` an attribute rather than a keyword prefix
gingerBill
2019-02-23
1
-5
/
+12
*
Pass any and union "by pointer" to make the tag a pointer
gingerBill
2019-01-26
1
-1
/
+0
*
Remove dead code
gingerBill
2019-01-24
1
-2
/
+1
*
Fix checking `_` constant declarations with a procedure
gingerBill
2019-01-10
1
-1
/
+13
*
Add entity use when `using` is applied to a variable declaration
gingerBill
2018-12-31
1
-0
/
+2
*
`static` variable declarations (Experimental)
gingerBill
2018-12-28
1
-0
/
+16
*
Fix race condition; Change `for in` addressing mode
gingerBill
2018-12-24
1
-5
/
+6
*
Labels for block and if statements (break only)
gingerBill
2018-12-08
1
-8
/
+32
*
Fix #complete switch on pointers to unions #286
gingerBill
2018-11-29
1
-1
/
+1
*
Move atomic intrinsics to the new built-in package intrinsics
gingerBill
2018-10-20
1
-2
/
+2
*
switch on typeid with type cases
gingerBill
2018-10-13
1
-17
/
+31
*
Minor fixes
gingerBill
2018-09-24
1
-1
/
+1
*
context.allocator = a; Remove __ from runtime procs; improve division for com...
gingerBill
2018-09-15
1
-1
/
+1
*
Allow for optional ok for return
gingerBill
2018-09-11
1
-2
/
+4
*
Make diverging procedure types different from ones without a return type
gingerBill
2018-09-09
1
-1
/
+1
*
Diverging procedures `proc() -> !` (no return)
gingerBill
2018-09-08
1
-1
/
+5
*
Disable for in over cstring
gingerBill
2018-08-26
1
-1
/
+1
*
bit_set['A'..'Z'], bit_set[0..8]
gingerBill
2018-08-16
1
-18
/
+3
*
Cleaning type hinting for assignments
gingerBill
2018-08-14
1
-1
/
+1
*
Fix demo and improve type hinting
gingerBill
2018-08-14
1
-1
/
+1
[prev]
[next]