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_expr.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fix: Fixed #soa arrays
Victor Sohier
2024-05-05
1
-2
/
+11
*
Merge pull request #3526 from laytan/target-features
gingerBill
2024-05-05
1
-1
/
+67
|
\
|
*
compiler: improve target features support
Laytan Laats
2024-05-02
1
-1
/
+67
*
|
Improve error message's suggestion for `if !integer`
gingerBill
2024-05-03
1
-3
/
+5
|
/
*
Implement dumb `PtrMap`
gingerBill
2024-04-26
1
-5
/
+5
*
Obfuscate `#line`
gingerBill
2024-04-08
1
-1
/
+5
*
Obfuscate `#file` and `#procedure` when `-obfuscate-source-code-locations` is...
gingerBill
2024-04-08
1
-2
/
+10
*
Fix printing error when field name could not be found
gingerBill
2024-04-08
1
-1
/
+2
*
Fix nested `ERROR_BLOCK` bug
gingerBill
2024-04-01
1
-5
/
+13
*
Fix error message
gingerBill
2024-04-01
1
-2
/
+2
*
Enforce error on old style for/switch l-value
gingerBill
2024-03-30
1
-4
/
+0
*
Fix another #soa race condition bug
gingerBill
2024-03-26
1
-0
/
+5
*
Fix error reporting for type cycles
gingerBill
2024-03-25
1
-1
/
+1
*
Merge pull request #3326 from rick-masters/fix_fields_wait_signal
gingerBill
2024-03-25
1
-0
/
+1
|
\
|
*
Fix fields_wait_signal futex.
rick-masters
2024-03-24
1
-0
/
+1
*
|
Potentially fix a race condition with parapoly types (related to #3328)
gingerBill
2024-03-25
1
-3
/
+8
|
/
*
Fix #3226
gingerBill
2024-03-24
1
-4
/
+8
*
Fix #3320
gingerBill
2024-03-24
1
-9
/
+10
*
Add error block around `error_line` calls
gingerBill
2024-03-23
1
-0
/
+5
*
Improve error suggestion and propagation for `x->y`
gingerBill
2024-03-23
1
-3
/
+11
*
Improve error propagation for `(*x).y` style errors from C-programmers
gingerBill
2024-03-23
1
-0
/
+2
*
Treat `*x` as an unary operator to improve error messages for common C-progra...
gingerBill
2024-03-23
1
-0
/
+13
*
Add missing field flags in debug printing
gingerBill
2024-03-23
1
-0
/
+12
*
Fix at error printing bug
gingerBill
2024-03-21
1
-1
/
+4
*
Fix #3305
gingerBill
2024-03-21
1
-1
/
+1
*
Minor clean up of `#no_broadcast` handling
gingerBill
2024-03-21
1
-5
/
+4
*
Add `#no_broadcast` procedure parameter to disallow automatic array programmi...
gingerBill
2024-03-21
1
-28
/
+48
*
Add suggestion for `x: ^T; y = x` to be `x^`
gingerBill
2024-03-20
1
-0
/
+5
*
Add `x: T; y: ^T = x` suggestion to do `&x`
gingerBill
2024-03-20
1
-0
/
+6
*
Correct matrix builtins for `#row_major`
gingerBill
2024-03-19
1
-2
/
+9
*
Add `#row_major matrix[R, C]T`
gingerBill
2024-03-19
1
-3
/
+9
*
Serialize errors to make them sortable, deterministic, and generally more con...
gingerBill
2024-03-19
1
-1
/
+1
*
Add better suggestion for [?]T mistake
gingerBill
2024-03-19
1
-1
/
+6
*
On `x: [?]T = {...}`, minimize errors by using the `[?]T` expression as a kin...
gingerBill
2024-03-19
1
-9
/
+38
*
Unify "Did you mean" strings
gingerBill
2024-03-18
1
-41
/
+41
*
Add list of C identifier suggestions (types and keywords)
gingerBill
2024-03-18
1
-14
/
+54
*
Add loads of checks for common mistakes for C programmer
gingerBill
2024-03-18
1
-0
/
+18
*
Add error message for C programmers which do `Foo{.x = 123}` rather than `Foo...
gingerBill
2024-03-18
1
-10
/
+18
*
Fix `for x in y` where `y` is an "optional ok" value, but ignores `#optional_...
gingerBill
2024-03-18
1
-8
/
+14
*
Fix #3284
gingerBill
2024-03-16
1
-0
/
+2
*
Fix variable used to index polymorphic parameter.
rick-masters
2024-03-12
1
-1
/
+1
*
Fix check for too many arguments to a polymorphic record type.
rick-masters
2024-03-12
1
-1
/
+1
*
Support swizzle selector syntax `.xyzw` for `#simd` vectors
gingerBill
2024-03-12
1
-4
/
+9
*
Improve error handling with assignments to `bit_field` using constants
gingerBill
2024-02-22
1
-13
/
+35
*
Support compound literals for `bit_field`
gingerBill
2024-02-22
1
-5
/
+44
*
Allow casting between a `bit_field` and its backing type
gingerBill
2024-02-22
1
-0
/
+7
*
Add doc-format support for `bit_field`
gingerBill
2024-02-22
1
-1
/
+0
*
Add general support for `bit_field`s
gingerBill
2024-02-22
1
-11
/
+75
*
Minor changes to futex implementation on Linux
gingerBill
2024-02-22
1
-2
/
+4
*
Add `#load_directory(path: string) > []runtime.Load_Directory_File`
gingerBill
2024-02-09
1
-2
/
+3
[prev]
[next]