util: rename list_empty() to list_is_empty()
[mesa.git] / src / compiler / nir / nir_opt_combine_stores.c
index b3e5cb3947fc8810912b173bc10f8158455fa6e7..c59f3ed99365dbab48e1d7717efb21f6d61db34c 100644 (file)
@@ -84,7 +84,7 @@ static struct combined_store *
 alloc_combined_store(struct combine_stores_state *state)
 {
    struct combined_store *result;
-   if (list_empty(&state->freelist)) {
+   if (list_is_empty(&state->freelist)) {
       result = linear_zalloc_child(state->lin_ctx, sizeof(*result));
    } else {
       result = list_first_entry(&state->freelist,