aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir_opt_dead_cf.c
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2020-05-21 20:41:12 -0500
committerMarge Bot <[email protected]>2020-06-11 05:08:12 +0000
commit5e1c42d85f2d89faddbc91be94b35044b29df847 (patch)
treecba107f062451b0534c92035aa8eb60f8578c932 /src/compiler/nir/nir_opt_dead_cf.c
parentb0d1f9a72ff6e1c7164dc22ff5eb3e817f245d13 (diff)
nir: Call nir_metadata_preserve on !progress
Reviewed-by: Alyssa Rosenzweig <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5171>
Diffstat (limited to 'src/compiler/nir/nir_opt_dead_cf.c')
-rw-r--r--src/compiler/nir/nir_opt_dead_cf.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/compiler/nir/nir_opt_dead_cf.c b/src/compiler/nir/nir_opt_dead_cf.c
index a798da5d588..01d3699b84a 100644
--- a/src/compiler/nir/nir_opt_dead_cf.c
+++ b/src/compiler/nir/nir_opt_dead_cf.c
@@ -374,9 +374,7 @@ opt_dead_cf_impl(nir_function_impl *impl)
*/
nir_repair_ssa_impl(impl);
} else {
-#ifndef NDEBUG
- impl->valid_metadata &= ~nir_metadata_not_properly_reset;
-#endif
+ nir_metadata_preserve(impl, nir_metadata_all);
}
return progress;