Module: Mesa Branch: master Commit: 117bf856d876f8627459eecd579c5f6079a2be71 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=117bf856d876f8627459eecd579c5f6079a2be71
Author: Brian Paul <[email protected]> Date: Tue Apr 20 10:10:21 2010 -0600 nv50: move declaration before code --- src/gallium/drivers/nv50/nv50_program.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/nv50/nv50_program.c b/src/gallium/drivers/nv50/nv50_program.c index 608daa1..89ab25e 100644 --- a/src/gallium/drivers/nv50/nv50_program.c +++ b/src/gallium/drivers/nv50/nv50_program.c @@ -600,8 +600,8 @@ static void emit_interp(struct nv50_pc *pc, struct nv50_reg *dst, struct nv50_reg *iv, unsigned mode) { - assert(dst->rhw != -1); struct nv50_program_exec *e = exec(pc); + assert(dst->rhw != -1); e->inst[0] |= 0x80000000; set_dst(pc, dst, e); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
