mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-06 21:17:40 +00:00
Fix constant out of bounds bug
This commit is contained in:
@@ -3119,13 +3119,12 @@ bool check_index_value(CheckerContext *c, bool open_range, Ast *index_value, i64
|
||||
}
|
||||
if (value) *value = v;
|
||||
bool out_of_bounds = false;
|
||||
if (open_range) {
|
||||
out_of_bounds = v >= max_count;
|
||||
} else {
|
||||
out_of_bounds = v >= max_count+1;
|
||||
}
|
||||
if (v < 0) {
|
||||
out_of_bounds = true;
|
||||
} else if (open_range) {
|
||||
out_of_bounds = v > max_count;
|
||||
} else {
|
||||
out_of_bounds = v >= max_count;
|
||||
}
|
||||
|
||||
if (out_of_bounds) {
|
||||
|
||||
Reference in New Issue
Block a user