py: Remove unused "use_stack" argument from for_iter_end emit function.
diff --git a/py/compile.c b/py/compile.c
index 5ea7bb4..3967350 100644
--- a/py/compile.c
+++ b/py/compile.c
@@ -1484,7 +1484,7 @@
         EMIT_ARG(jump, continue_label);
     }
     EMIT_ARG(label_assign, pop_label);
-    EMIT_ARG(for_iter_end, true);
+    EMIT(for_iter_end);
 
     // break/continue apply to outer loop (if any) in the else block
     END_BREAK_CONTINUE_BLOCK
@@ -2906,7 +2906,7 @@
 
     EMIT_ARG(jump, l_top);
     EMIT_ARG(label_assign, l_end);
-    EMIT_ARG(for_iter_end, true);
+    EMIT(for_iter_end);
 }
 
 STATIC void check_for_doc_string(compiler_t *comp, mp_parse_node_t pn) {