diff options
author | Jason Ekstrand <[email protected]> | 2018-03-20 14:19:32 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-06-22 20:15:56 -0700 |
commit | d7d5aab45b4b24a89970df17c82c4e00393400d2 (patch) | |
tree | be971cd19faffbdada960cfa79291adb221426c0 /src/intel/compiler/brw_nir.c | |
parent | 5dc58908b7cde8f23974085d1346af315d932c4e (diff) |
intel,ir3: Disable nir_opt_copy_prop_vars
This pass doesn't handle deref instructions yet. Making it handle both
legacy derefs and deref instructions would be painful. Since it's not
important for correctness, just disable it for now.
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Acked-by: Rob Clark <[email protected]>
Acked-by: Bas Nieuwenhuizen <[email protected]>
Acked-by: Dave Airlie <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_nir.c')
-rw-r--r-- | src/intel/compiler/brw_nir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_nir.c b/src/intel/compiler/brw_nir.c index dfeea73b06a..227c94d83b9 100644 --- a/src/intel/compiler/brw_nir.c +++ b/src/intel/compiler/brw_nir.c @@ -543,7 +543,7 @@ brw_nir_optimize(nir_shader *nir, const struct brw_compiler *compiler, do { progress = false; OPT(nir_lower_vars_to_ssa); - OPT(nir_opt_copy_prop_vars); + /* OPT(nir_opt_copy_prop_vars); */ if (is_scalar) { OPT(nir_lower_alu_to_scalar); |