aboutsummaryrefslogtreecommitdiff
path: root/src/checker.cpp
diff options
context:
space:
mode:
authorKevin Watters <kevinwatters@gmail.com>2019-03-26 11:17:58 -0400
committerKevin Watters <kevinwatters@gmail.com>2019-03-26 11:17:58 -0400
commit14ff561f6cceef2ef50d6d23d66d5403101a7cc0 (patch)
tree2f5729694019a9b7a66d019d85c1c0756dc05216 /src/checker.cpp
parente6f9b4fb11285c5ceea3b3cc7cee26aa9f5ae3d2 (diff)
parent1fd677b42e33cf0407e204830df656fc1a931df5 (diff)
Merge branch 'master' of github.com:odin-lang/Odin
Diffstat (limited to 'src/checker.cpp')
-rw-r--r--src/checker.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/checker.cpp b/src/checker.cpp
index 971c714b2..f1e2bb45d 100644
--- a/src/checker.cpp
+++ b/src/checker.cpp
@@ -1606,7 +1606,8 @@ void generate_minimum_dependency_set(Checker *c, Entity *start) {
if (!build_context.no_bounds_check) {
String bounds_check_entities[] = {
str_lit("bounds_check_error"),
- str_lit("slice_expr_error"),
+ str_lit("slice_expr_error_hi"),
+ str_lit("slice_expr_error_lo_hi"),
str_lit("dynamic_array_expr_error"),
};
for (isize i = 0; i < gb_count_of(bounds_check_entities); i++) {