Re: [Mesa-dev] [PATCH] nir/algebraic: Only include nir_search_helpers once

2017-01-18 Thread Iago Toral
Reviewed-by: Iago Toral Quiroga On Wed, 2017-01-18 at 15:24 -0800, Jason Ekstrand wrote: > We were including it once per value, so probably around 10k times. > Let's not cause the compiler any more work than we have to. > --- >  src/compiler/nir/nir_algebraic.py | 2 +- >  1 file changed, 1 insert

[Mesa-dev] [PATCH] nir/algebraic: Only include nir_search_helpers once

2017-01-18 Thread Jason Ekstrand
We were including it once per value, so probably around 10k times. Let's not cause the compiler any more work than we have to. --- src/compiler/nir/nir_algebraic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/nir/nir_algebraic.py b/src/compiler/nir/nir_algebra