diff options
author | Damien George <damien.p.george@gmail.com> | 2014-03-27 23:26:35 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-03-27 23:26:35 +0000 |
commit | 2326d52d2056aace9c5eddd170fe6ad4186e39e8 (patch) | |
tree | 0040b59c798301a1fdb30901b5e0d4adae143adb /py/emit.h | |
parent | 8767d0710ee3f0b78fdfa7b73750d5b66048b8b0 (diff) | |
download | micropython-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |