mesa: remove support for GL_APPLE_client_storage extension
[mesa.git] / src / glsl / opt_function_inlining.cpp
index 064089a9f77a2c358604c908341b96e5f6224b62..8fef358cc97b102c68d007bbdc5dcf348d632d69 100644 (file)
@@ -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.