diff options
author | Vinson Lee <[email protected]> | 2010-02-14 13:10:08 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-02-14 13:10:08 -0800 |
commit | 7e64701263f8158fb4138610ba63df41eefe6594 (patch) | |
tree | 852161efc7806a513f7b779e449d9f74e5a4b2fe /src/gallium/drivers | |
parent | 558c15995f486d72b959ad19c914a38adbcbe5f7 (diff) |
svga: Silence uninitialized variable warning.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/svga/svga_tgsi_insn.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/svga/svga_tgsi_insn.c b/src/gallium/drivers/svga/svga_tgsi_insn.c index be821e98217..6debd98b7a1 100644 --- a/src/gallium/drivers/svga/svga_tgsi_insn.c +++ b/src/gallium/drivers/svga/svga_tgsi_insn.c @@ -525,6 +525,7 @@ static boolean emit_def_const( struct svga_shader_emitter *emit, break; default: assert(0); + opcode = inst_token( SVGA3DOP_NOP ); break; } |