glsl: Remove unused pointer value.

Silences "Unused pointer value" defect reported by Coverity.

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Vinson Lee
2013-09-23 21:41:39 -07:00
parent 71ecc2cf71
commit 6128c226b4

View File

@@ -2252,7 +2252,7 @@ ir_to_mesa_visitor::visit(ir_if *ir)
visit_exec_list(&ir->else_instructions, this);
}
if_inst = emit(ir->condition, OPCODE_ENDIF);
emit(ir->condition, OPCODE_ENDIF);
}
void