Module: Mesa Branch: master Commit: 9100c359ac17eb0699b3ce5224fd8299dfbe4350 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9100c359ac17eb0699b3ce5224fd8299dfbe4350
Author: Tobias Klausmann <[email protected]> Date: Fri Jul 25 17:34:18 2014 +0200 nv50/ir: (trivial) initialize pointer to silence warning Reviewed-by: Ilia Mirkin <[email protected]> Signed-off-by: Tobias Klausmann <[email protected]> --- src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp index 456efcb..41b91e8 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp @@ -2141,7 +2141,7 @@ Converter::handleINTERP(Value *dst[4]) { // Check whether the input is linear. All other attributes ignored. Instruction *insn; - Value *offset = NULL, *ptr = NULL, *w; + Value *offset = NULL, *ptr = NULL, *w = NULL; bool linear; operation op; int c, mode; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
