From: Eric Anholt Date: Wed, 31 Mar 2010 04:31:32 +0000 (-1000) Subject: Fix unused variable warning. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=794ea61006142b794ccd277af9ac044aa63d6fcb;p=mesa.git Fix unused variable warning. --- diff --git a/ast_to_hir.cpp b/ast_to_hir.cpp index e037af7137b..5162acea4ed 100644 --- a/ast_to_hir.cpp +++ b/ast_to_hir.cpp @@ -1582,7 +1582,6 @@ ast_selection_statement::hir(exec_list *instructions, struct _mesa_glsl_parse_state *state) { ir_rvalue *const condition = this->condition->hir(instructions, state); - struct simple_node *ptr; /* From page 66 (page 72 of the PDF) of the GLSL 1.50 spec: *