summaryrefslogtreecommitdiffstatshomepage
path: root/py/emit.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-03-27 23:26:35 +0000
committerDamien George <damien.p.george@gmail.com>2014-03-27 23:26:35 +0000
commit2326d52d2056aace9c5eddd170fe6ad4186e39e8 (patch)
tree0040b59c798301a1fdb30901b5e0d4adae143adb /py/emit.h
parent8767d0710ee3f0b78fdfa7b73750d5b66048b8b0 (diff)
downloadmicropython-2326d52d2056aace9c5eddd170fe6ad4186e39e8.tar.gz
micropython-2326d52d2056aace9c5eddd170fe6ad4186e39e8.zip
py: Factor out code from runtime.c to emitglue.c.
Diffstat (limited to 'py/emit.h')
-rw-r--r--py/emit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emit.h b/py/emit.h
index ce0c98ba78..26149983b0 100644
--- a/py/emit.h
+++ b/py/emit.h
@@ -79,7 +79,7 @@ typedef struct _emit_method_table_t {
void (*setup_except)(emit_t *emit, int label);
void (*setup_finally)(emit_t *emit, int label);
void (*end_finally)(emit_t *emit);
- void (*get_iter)(emit_t *emit); // tos = getiter(tos)
+ void (*get_iter)(emit_t *emit);
void (*for_iter)(emit_t *emit, int label);
void (*for_iter_end)(emit_t *emit);
void (*pop_block)(emit_t *emit);