r600: fix tgsi clock last setting

On cayman this was hitting an assert later, which probably wasn't
see on non-cayman due to having the t slot.

Fixes: 9041730d1 (r600: add support for ARB_shader_clock.)
This commit is contained in:
Dave Airlie 2018-02-26 11:05:45 +10:00
parent 4d72a1efea
commit 0cc5be7741
1 changed files with 1 additions and 0 deletions

View File

@ -10742,6 +10742,7 @@ static int tgsi_clock(struct r600_shader_ctx *ctx)
alu.op = ALU_OP1_MOV;
tgsi_dst(ctx, &inst->Dst[0], 1, &alu.dst);
alu.src[0].sel = EG_V_SQ_ALU_SRC_TIME_HI;
alu.last = 1;
r = r600_bytecode_add_alu(ctx->bc, &alu);
if (r)
return r;