Re: [Mesa-dev] [PATCH] glsl: Remove useless walk of the hash table

2016-12-17 Thread Thomas Helland
2016-12-17 21:25 GMT+01:00 Eric Anholt : > Thomas Helland writes: > >> We are removing the entry right beforehand, so this can never succeed. >> Tested with a shader-db run. No changes in instruction count. >> --- >> src/compiler/glsl/opt_copy_propagation.cpp | 6 -- >> 1 file changed, 6 dele

Re: [Mesa-dev] [PATCH] glsl: Remove useless walk of the hash table

2016-12-17 Thread Eric Anholt
Thomas Helland writes: > We are removing the entry right beforehand, so this can never succeed. > Tested with a shader-db run. No changes in instruction count. > --- > src/compiler/glsl/opt_copy_propagation.cpp | 6 -- > 1 file changed, 6 deletions(-) > > diff --git a/src/compiler/glsl/opt_c

[Mesa-dev] [PATCH] glsl: Remove useless walk of the hash table

2016-12-17 Thread Thomas Helland
We are removing the entry right beforehand, so this can never succeed. Tested with a shader-db run. No changes in instruction count. --- src/compiler/glsl/opt_copy_propagation.cpp | 6 -- 1 file changed, 6 deletions(-) diff --git a/src/compiler/glsl/opt_copy_propagation.cpp b/src/compiler/gl