From 53320e25b425b10478891c695ca9a3c0477abd22 Mon Sep 17 00:00:00 2001 From: Timothy Arceri Date: Wed, 9 Aug 2017 13:34:05 +1000 Subject: [PATCH] glsl: remove unused field from ir_call MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Thomas Helland Tested-by: Dieter Nützel --- src/compiler/glsl/ir.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/compiler/glsl/ir.h b/src/compiler/glsl/ir.h index ce4ade9e80a..170759abebd 100644 --- a/src/compiler/glsl/ir.h +++ b/src/compiler/glsl/ir.h @@ -1602,7 +1602,6 @@ public: { assert(callee->return_type != NULL); actual_parameters->move_nodes_to(& this->actual_parameters); - this->use_builtin = callee->is_builtin(); } ir_call(ir_function_signature *callee, @@ -1613,7 +1612,6 @@ public: { assert(callee->return_type != NULL); actual_parameters->move_nodes_to(& this->actual_parameters); - this->use_builtin = callee->is_builtin(); } virtual ir_call *clone(void *mem_ctx, struct hash_table *ht) const; @@ -1655,9 +1653,6 @@ public: /* List of ir_rvalue of paramaters passed in this call. */ exec_list actual_parameters; - /** Should this call only bind to a built-in function? */ - bool use_builtin; - /* * ARB_shader_subroutine support - * the subroutine uniform variable and array index -- 2.30.2