From 03911195a32e9c00b07de2c5cdc6a4a70ae2284b Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Mon, 23 Sep 2019 12:24:12 -0500 Subject: [PATCH] util/rb_tree: Replace useless ifs with asserts Reviewed-by: Ian Romanick --- 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; -- 2.30.2