nir: Update progress info in nir_sort_unstructured_blocks
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Reviewed-by: Mel Henning <mhenning@darkrefraction.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38354>
This commit is contained in:
Christoph Pillmayer 2025-11-11 09:31:07 +00:00 committed by Marge Bot
parent 8db66767a9
commit da3d8c8b4b

View file

@ -969,6 +969,6 @@ nir_sort_unstructured_blocks(nir_function_impl *impl)
ralloc_free(blocks);
/* Most metadata is toast but we indexed blocks as part of this pass. */
impl->valid_metadata &= nir_metadata_live_defs;
nir_progress(true, impl, nir_metadata_live_defs);
impl->valid_metadata |= nir_metadata_block_index;
}