From: Fabian Bieler Date: Fri, 3 Dec 2010 02:39:48 +0000 (+0100) Subject: r600g: set address of pop instructions to next instruction X-Git-Tag: 062012170305~8535 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd431a12bf1f0c47dac6bf10c2d9edb5726fe6fe;p=profile%2Fivi%2Fmesa.git r600g: set address of pop instructions to next instruction --- diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c index b6d815f..60e6794 100644 --- a/src/gallium/drivers/r600/r600_shader.c +++ b/src/gallium/drivers/r600/r600_shader.c @@ -2805,6 +2805,7 @@ static int pops(struct r600_shader_ctx *ctx, int pops) { r600_bc_add_cfinst(ctx->bc, CTX_INST(V_SQ_CF_WORD1_SQ_CF_INST_POP)); ctx->bc->cf_last->pop_count = pops; + ctx->bc->cf_last->cf_addr = ctx->bc->cf_last->id + 2; return 0; }