summaryrefslogtreecommitdiffstatshomepage
path: root/py/emit.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-01-16 12:24:49 +0000
committerDamien George <damien.p.george@gmail.com>2015-01-16 12:24:49 +0000
commit0abb5609b01c1b59d229bde8a0b3fc1df6dce060 (patch)
tree20dc5ac729bde46c6c2192d1b72d54120afc991c /py/emit.h
parent2276eb808499b81f7c6e32ab1d497afa020c9379 (diff)
downloadmicropython-0abb5609b01c1b59d229bde8a0b3fc1df6dce060.tar.gz
micropython-0abb5609b01c1b59d229bde8a0b3fc1df6dce060.zip
py: Remove unnecessary id_flags argument from emitter's load_fast.
Saves 24 bytes in bare-arm.
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 06a4201e7f..2ca3d0420d 100644
--- a/py/emit.h
+++ b/py/emit.h
@@ -82,7 +82,7 @@ typedef struct _emit_method_table_t {
void (*load_const_str)(emit_t *emit, qstr qst, bool bytes);
void (*load_const_obj)(emit_t *emit, void *obj);
void (*load_null)(emit_t *emit);
- void (*load_fast)(emit_t *emit, qstr qst, mp_uint_t id_flags, mp_uint_t local_num);
+ void (*load_fast)(emit_t *emit, qstr qst, mp_uint_t local_num);
void (*load_deref)(emit_t *emit, qstr qst, mp_uint_t local_num);
void (*load_name)(emit_t *emit, qstr qst);
void (*load_global)(emit_t *emit, qstr qst);