From: Rob Clark Date: Tue, 5 Jun 2018 17:42:21 +0000 (-0400) Subject: freedreno/ir3: use move_load_const pass X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f489fa1f3f83f89fb284a5f6f9fd6dae2c3c747a;p=mesa.git freedreno/ir3: use move_load_const pass Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/ir3/ir3_nir.c b/src/gallium/drivers/freedreno/ir3/ir3_nir.c index 8f50b2741f0..9ada3889eb9 100644 --- a/src/gallium/drivers/freedreno/ir3/ir3_nir.c +++ b/src/gallium/drivers/freedreno/ir3/ir3_nir.c @@ -35,6 +35,7 @@ #include "nir/tgsi_to_nir.h" + static const nir_shader_compiler_options options = { .lower_fpow = true, .lower_scmp = true, @@ -204,6 +205,8 @@ ir3_optimize_nir(struct ir3_shader *shader, nir_shader *s, OPT_V(s, nir_remove_dead_variables, nir_var_local); + OPT_V(s, nir_move_load_const); + if (fd_mesa_debug & FD_DBG_DISASM) { debug_printf("----------------------\n"); nir_print_shader(s, stdout);