From: Brian Paul Date: Tue, 20 Apr 2010 16:10:21 +0000 (-0600) Subject: nv50: move declaration before code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=117bf856d876f8627459eecd579c5f6079a2be71;p=mesa.git nv50: move declaration before code --- diff --git a/src/gallium/drivers/nv50/nv50_program.c b/src/gallium/drivers/nv50/nv50_program.c index 608daa159e7..89ab25eba04 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);