Re: [Mesa-dev] [PATCH] nir: remove duplicated foreach loop

2017-01-09 Thread Jason Ekstrand
Reviewed-by: Jason Ekstrand and pushed... Thanks! On Mon, Jan 9, 2017 at 1:45 PM, Thomas Hindoe Paaboel Andersen < pho...@gmail.com> wrote: > The foreach loop was called both in the else case > and right after. The indentation seems to indicate > that the extra call was from a previous version

[Mesa-dev] [PATCH] nir: remove duplicated foreach loop

2017-01-09 Thread Thomas Hindoe Paaboel Andersen
The foreach loop was called both in the else case and right after. The indentation seems to indicate that the extra call was from a previous version with an else section with out curly brackets. --- Spotted due to the wrong indentation. The patch is untested as I do not have the neccesary hardware.