summaryrefslogtreecommitdiffstats
path: root/src/glsl
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2015-11-02 21:43:40 -0800
committerKenneth Graunke <[email protected]>2015-11-03 17:06:48 -0800
commit59bbe2681b73c3795b7298e2486d5fde7c464ed5 (patch)
tree3f9c99583ceb9fc488972ad0b0115e5af570b2e1 /src/glsl
parentbc3942e2970c60a816cf954b1fa4d416d0852bd9 (diff)
nir: Properly invalidate metadata in nir_opt_remove_phis().
Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Eduardo Lima Mitev <[email protected]> Cc: [email protected]
Diffstat (limited to 'src/glsl')
-rw-r--r--src/glsl/nir/nir_opt_remove_phis.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/glsl/nir/nir_opt_remove_phis.c b/src/glsl/nir/nir_opt_remove_phis.c
index 5bdf7ef4da7..66d37544115 100644
--- a/src/glsl/nir/nir_opt_remove_phis.c
+++ b/src/glsl/nir/nir_opt_remove_phis.c
@@ -108,6 +108,11 @@ remove_phis_impl(nir_function_impl *impl)
nir_foreach_block(impl, remove_phis_block, &progress);
+ if (progress) {
+ nir_metadata_preserve(impl, nir_metadata_block_index |
+ nir_metadata_dominance);
+ }
+
return progress;
}