From 794ea61006142b794ccd277af9ac044aa63d6fcb Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 30 Mar 2010 18:31:32 -1000 Subject: [PATCH] Fix unused variable warning. --- ast_to_hir.cpp | 1 - 1 file changed, 1 deletion(-) 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: * -- 2.30.2