diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-09 20:20:34 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-09 20:20:34 +0100 |
commit | e2835c16f412c8cd7f51539392b86e1a0e22247f (patch) | |
tree | 10e43c61b06d0cd780b3f457dbd672a8c78da5d4 /py | |
parent | b5fbd0ba876b43d0f1d1d9af8dd556766bda553b (diff) | |
download | micropython-e2835c16f412c8cd7f51539392b86e1a0e22247f.tar.gz micropython-e2835c16f412c8cd7f51539392b86e1a0e22247f.zip |
py: Oops, fix emitcpy to compile with latest changes.
Diffstat (limited to 'py')
-rw-r--r-- | py/emitcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitcpy.c b/py/emitcpy.c index fe40c4145e..8c608d6a2b 100644 --- a/py/emitcpy.c +++ b/py/emitcpy.c @@ -230,7 +230,7 @@ STATIC void emit_cpy_load_const_verbatim_str(emit_t *emit, const char *str) { } } -STATIC void emit_cpy_load_fast(emit_t *emit, qstr qstr, int local_num) { +STATIC void emit_cpy_load_fast(emit_t *emit, qstr qstr, uint id_flags, int local_num) { emit_pre(emit, 1, 3); if (emit->pass == PASS_3) { printf("LOAD_FAST %d %s\n", local_num, qstr_str(qstr)); |