From: Ian Romanick Date: Tue, 8 Mar 2011 19:43:52 +0000 (-0800) Subject: glsl: Use insert_before for lists instead of open coding it X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bdb6a6ef83af62f2eda692d91ee2476c3fd1ce3a;p=mesa.git glsl: Use insert_before for lists instead of open coding it --- diff --git a/src/glsl/opt_function_inlining.cpp b/src/glsl/opt_function_inlining.cpp index 064089a9f77..8fef358cc97 100644 --- a/src/glsl/opt_function_inlining.cpp +++ b/src/glsl/opt_function_inlining.cpp @@ -209,10 +209,7 @@ ir_call::generate_inline(ir_instruction *next_ir) } /* Now push those new instructions in. */ - foreach_iter(exec_list_iterator, iter, new_instructions) { - ir_instruction *ir = (ir_instruction *)iter.get(); - next_ir->insert_before(ir); - } + next_ir->insert_before(&new_instructions); /* Copy back the value of any 'out' parameters from the function body * variables to our own.