Re: [Mesa-dev] [PATCH] nir: Don't try to to-SSA ALU instructions that are already SSA.

2015-01-28 Thread Jason Ekstrand
I'm not super-familiar with Connor's to-SSA pass, but I think that does what you want. Reviewed-by: Jason Ekstrand On Wed, Jan 28, 2015 at 5:09 PM, Eric Anholt wrote: > --- > The i965 driver apparently only has things all in ssa or all in non-ssa, > while > for TGSI I ended up doing some thing

[Mesa-dev] [PATCH] nir: Don't try to to-SSA ALU instructions that are already SSA.

2015-01-28 Thread Eric Anholt
--- The i965 driver apparently only has things all in ssa or all in non-ssa, while for TGSI I ended up doing some things directly in SSA before the to-SSA pass. src/glsl/nir/nir_to_ssa.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/glsl/nir/nir_to_ssa.c b/src/glsl/nir/nir_to_ssa.c in