summaryrefslogtreecommitdiffstats
path: root/src/mesa/program
diff options
context:
space:
mode:
authorVinson Lee <[email protected]>2013-09-23 21:41:39 -0700
committerVinson Lee <[email protected]>2013-09-24 22:10:36 -0700
commit6128c226b43b059ca490a2513d1511a3134826fe (patch)
treee7f26c12001400700ab146c6bed003a4f7c4c3da /src/mesa/program
parent71ecc2cf71e678daca347bb10dd48e037ecd10af (diff)
glsl: Remove unused pointer value.
Silences "Unused pointer value" defect reported by Coverity. Signed-off-by: Vinson Lee <[email protected]> Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/program')
-rw-r--r--src/mesa/program/ir_to_mesa.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp
index d5a6a872ab5..8cd42dfd257 100644
--- a/src/mesa/program/ir_to_mesa.cpp
+++ b/src/mesa/program/ir_to_mesa.cpp
@@ -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