Re: [Mesa-dev] [PATCH] st/mesa: keep track of saturated writes when eliminating dead code

2015-09-23 Thread Marek Olšák
Reviewed-by: Marek Olšák Marek On Thu, Sep 24, 2015 at 1:05 AM, Ilia Mirkin wrote: > On Wed, Sep 23, 2015 at 12:33 AM, Ilia Mirkin wrote: >> It doesn't matter whether a write is saturated or not, in another >> implementation it might even have been a separate opcode. This code was >> most like

Re: [Mesa-dev] [PATCH] st/mesa: keep track of saturated writes when eliminating dead code

2015-09-23 Thread Ilia Mirkin
On Wed, Sep 23, 2015 at 12:33 AM, Ilia Mirkin wrote: > It doesn't matter whether a write is saturated or not, in another > implementation it might even have been a separate opcode. This code was > most likely copied from the copy-propagation pass (where one does have > to distinguish saturation).

[Mesa-dev] [PATCH] st/mesa: keep track of saturated writes when eliminating dead code

2015-09-22 Thread Ilia Mirkin
It doesn't matter whether a write is saturated or not, in another implementation it might even have been a separate opcode. This code was most likely copied from the copy-propagation pass (where one does have to distinguish saturation). Signed-off-by: Ilia Mirkin --- Haven't run this through pig