Module: Mesa Branch: master Commit: 03911195a32e9c00b07de2c5cdc6a4a70ae2284b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=03911195a32e9c00b07de2c5cdc6a4a70ae2284b
Author: Jason Ekstrand <[email protected]> Date: Mon Sep 23 12:24:12 2019 -0500 util/rb_tree: Replace useless ifs with asserts Reviewed-by: Ian Romanick <[email protected]> --- src/util/rb_tree_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/rb_tree_test.c b/src/util/rb_tree_test.c index a5952b3b52d..20a236d2eec 100644 --- a/src/util/rb_tree_test.c +++ b/src/util/rb_tree_test.c @@ -84,7 +84,7 @@ validate_tree_order(struct rb_tree *tree, unsigned expected_count) * show up in the list in order of insertion. We insert them * in the order they are in in the array. */ - if (prev == NULL || prev < n); + assert(prev == NULL || prev < n); } prev = n; @@ -105,7 +105,7 @@ validate_tree_order(struct rb_tree *tree, unsigned expected_count) * show up in the list in order of insertion. We insert them * in the order they are in in the array. */ - if (prev == NULL || prev > n); + assert(prev == NULL || prev > n); } prev = n; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
