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
...
*
Be a little more correct with the temporary Ast node
gingerBill
2021-05-19
1
-3
/
+3
*
Add range-based error messages to `-verbose-errors`
gingerBill
2021-05-19
1
-1
/
+1
*
Add suggestion for unused expression on `x == y`
gingerBill
2021-05-19
1
-0
/
+22
*
Improve untyped to typed logic for aiding the backend
gingerBill
2021-05-16
1
-1
/
+5
*
Allow `..=` alongside `..` as a "full range" operator; Update `core:odin/pars...
gingerBill
2021-05-16
1
-0
/
+1
*
Remove old dead code
gingerBill
2021-05-15
1
-47
/
+0
*
Fix #814
gingerBill
2021-05-13
1
-3
/
+38
*
Remove `use_llvm_api` related checks and other related things
gingerBill
2021-04-25
1
-3
/
+0
*
Move out some intrinsics into separate procedures in llvm_backend.cpp; Rename...
gingerBill
2021-04-24
1
-4
/
+4
*
Add new intrinsics: debug_trap, trap, read_cycle_counter, expect
gingerBill
2021-04-22
1
-1
/
+13
*
Allow casting of `#optional_ok` call expressions
gingerBill
2021-04-19
1
-3
/
+3
*
Add support for soa slice reference iteration
gingerBill
2021-03-24
1
-0
/
+1
*
Support `using` on intermediate soa field value from a for-in statement
gingerBill
2021-03-24
1
-1
/
+4
*
Support #soa array iteration in a `for in` loop for `-llvm-api` backend only
gingerBill
2021-03-24
1
-1
/
+12
*
Make `for in` logic a bit more generic
gingerBill
2021-03-24
1
-30
/
+28
*
Make the parser support as many identifiers on the LHS in `for in` loops to i...
gingerBill
2021-03-24
1
-9
/
+18
*
Fix `is_diverging_stmt` for invalid statements
gingerBill
2021-03-13
1
-4
/
+4
*
Minimize TokenPos size by using `i32` for line/column/offset and file_id inst...
gingerBill
2021-03-04
1
-23
/
+18
*
Deprecate `inline for` in favour of `#unroll for`
gingerBill
2021-02-23
1
-5
/
+5
*
Remove `"pure"` and `"pure_none"` calling conventions
gingerBill
2021-02-23
1
-11
/
+0
*
Remove `bit_field` type from Odin (keyword and dead runtime code still exists)
gingerBill
2021-02-19
1
-11
/
+0
*
Improve text/scanner whitespace parameter to use a bit_set instead; Improve e...
gingerBill
2020-12-15
1
-2
/
+12
*
Fix #795
gingerBill
2020-12-03
1
-2
/
+1
*
Minimize memory usage for AST nodes by using Slice<T> rather than Array<T> wh...
gingerBill
2020-11-16
1
-3
/
+3
*
Improve logic for x->y() shorthand
gingerBill
2020-11-15
1
-2
/
+1
*
Implement custom temporary allocator using ring buffer
gingerBill
2020-11-15
1
-5
/
+0
*
Add SCOPED_TEMPORARY_BLOCK for temporary allocations within a block
gingerBill
2020-11-15
1
-15
/
+15
*
Add check to block statements to see if they only contain one statement, a va...
gingerBill
2020-09-23
1
-0
/
+60
*
Fix issue #723
Joseph Battelle
2020-09-14
1
-1
/
+1
*
Fix check_arity_match bug
gingerBill
2020-09-12
1
-1
/
+1
*
Make sync.atomic_* operations use `when` statements instead of `switch`; Make...
gingerBill
2020-08-16
1
-1
/
+5
*
Fix using pointers bug with addressing struct fields
gingerBill
2020-06-18
1
-1
/
+2
*
Fix typo in error message
gingerBill
2020-06-06
1
-1
/
+1
*
Improve termination rules checking for missing `return`; Make diverging proce...
gingerBill
2020-06-06
1
-25
/
+78
*
Add `"pure"` procedure types
gingerBill
2020-05-23
1
-0
/
+11
*
Selector Call Expressions: `x->y(123) == x.y(x, 123)`
gingerBill
2020-05-22
1
-0
/
+12
*
#591 Improve type switch statement error for `fallthrough`
gingerBill
2020-05-13
1
-2
/
+6
*
Fix #632 behaviour
gingerBill
2020-05-13
1
-3
/
+19
*
Replace `entity_of_ident` with `entity_of_node`
gingerBill
2020-05-12
1
-1
/
+1
*
Add experimental atom op tables for llvm-backend
gingerBill
2020-05-02
1
-0
/
+55
*
Simplify compiler's `Map` and create a `StringMap` specifically for strings
gingerBill
2020-04-13
1
-3
/
+3
*
Support by-reference semantics in `for value_ref, index in &some_array` and `...
gingerBill
2020-03-24
1
-0
/
+14
*
Change behaviour of `switch v in &value` to make `v` have by-reference semantics
gingerBill
2020-03-24
1
-2
/
+6
*
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
[prev]
[next]