Re: [Mesa-dev] [PATCH 1/5] nir: split out instruction comparison functions

2015-09-23 Thread Connor Abbott
On Tue, Aug 18, 2015 at 1:29 AM, Jason Ekstrand wrote: > > On May 22, 2015 11:25 AM, "Connor Abbott" wrote: >> >> We'll want to use these outside of nir_opt_cse.c. Rather than adding yet >> another thing to the mess that is nir.c, create a new file and move >> nir_srcs_equal() there too. >> >> Si

Re: [Mesa-dev] [PATCH 1/5] nir: split out instruction comparison functions

2015-08-17 Thread Jason Ekstrand
On May 22, 2015 11:25 AM, "Connor Abbott" wrote: > > We'll want to use these outside of nir_opt_cse.c. Rather than adding yet > another thing to the mess that is nir.c, create a new file and move > nir_srcs_equal() there too. > > Signed-off-by: Connor Abbott > --- > src/glsl/Makefile.sources

[Mesa-dev] [PATCH 1/5] nir: split out instruction comparison functions

2015-05-22 Thread Connor Abbott
We'll want to use these outside of nir_opt_cse.c. Rather than adding yet another thing to the mess that is nir.c, create a new file and move nir_srcs_equal() there too. Signed-off-by: Connor Abbott --- src/glsl/Makefile.sources| 1 + src/glsl/nir/nir.c | 27 -- src/g