From bdb6a6ef83af62f2eda692d91ee2476c3fd1ce3a Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Tue, 8 Mar 2011 11:43:52 -0800 Subject: glsl: Use insert_before for lists instead of open coding it --- src/glsl/opt_function_inlining.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/glsl') diff --git a/src/glsl/opt_function_inlining.cpp b/src/glsl/opt_function_inlining.cpp index 064089a9f7..8fef358cc9 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. -- cgit v1.2.3