summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_nir.c
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2016-09-13 15:14:28 -0700
committerKenneth Graunke <kenneth@whitecape.org>2016-09-14 12:01:51 -0700
commit2d8a3fa7ea994ad02a40ff497109f966e3fcbeec (patch)
tree59bb6bdd47d2cd9120af0ffeff1bcc9e0b79107b /src/mesa/drivers/dri/i965/brw_nir.c
parent32630e211e60a2b41388d403cfbd4f43344d8590 (diff)
downloadexternal_mesa3d-2d8a3fa7ea994ad02a40ff497109f966e3fcbeec.zip
external_mesa3d-2d8a3fa7ea994ad02a40ff497109f966e3fcbeec.tar.gz
external_mesa3d-2d8a3fa7ea994ad02a40ff497109f966e3fcbeec.tar.bz2
nir: Report progress from nir_lower_phis_to_scalar.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_nir.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_nir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_nir.c b/src/mesa/drivers/dri/i965/brw_nir.c
index 27be201..5b2130f 100644
--- a/src/mesa/drivers/dri/i965/brw_nir.c
+++ b/src/mesa/drivers/dri/i965/brw_nir.c
@@ -381,7 +381,7 @@ nir_optimize(nir_shader *nir, bool is_scalar)
OPT(nir_copy_prop);
if (is_scalar) {
- OPT_V(nir_lower_phis_to_scalar);
+ OPT(nir_lower_phis_to_scalar);
}
OPT(nir_copy_prop);