From: Marek Olšák Date: Tue, 25 Sep 2012 15:28:13 +0000 (+0200) Subject: r600g: fix EXP on Cayman X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=96f50d0cf7bb13507f272d2f6ef9a6fca24d18e1;p=mesa.git r600g: fix EXP on Cayman NOTE: This is a candidate for the stable branches. --- diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c index 7df549ba702..29616f987e6 100644 --- a/src/gallium/drivers/r600/r600_shader.c +++ b/src/gallium/drivers/r600/r600_shader.c @@ -4388,10 +4388,8 @@ static int tgsi_exp(struct r600_shader_ctx *ctx) alu.dst.sel = ctx->temp_reg; alu.dst.chan = i; - if (i == 0) - alu.dst.write = 1; - if (i == 2) - alu.last = 1; + alu.dst.write = i == 0; + alu.last = i == 2; r = r600_bytecode_add_alu(ctx->bc, &alu); if (r) return r;