From: Jason Ekstrand Date: Fri, 25 Mar 2016 22:53:40 +0000 (-0700) Subject: i965: Allow mul+add fusing again X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6d658e9bd546581a0841e7acb8915dc05d44c628;p=mesa.git i965: Allow mul+add fusing again --- diff --git a/src/mesa/drivers/dri/i965/brw_nir.c b/src/mesa/drivers/dri/i965/brw_nir.c index ab6000b0573..83921891d1c 100644 --- a/src/mesa/drivers/dri/i965/brw_nir.c +++ b/src/mesa/drivers/dri/i965/brw_nir.c @@ -495,7 +495,7 @@ brw_postprocess_nir(nir_shader *nir, if (devinfo->gen >= 6) { /* Try and fuse multiply-adds */ -// OPT(brw_nir_opt_peephole_ffma); + OPT(brw_nir_opt_peephole_ffma); } OPT(nir_opt_algebraic_late);