aboutsummaryrefslogtreecommitdiff
path: root/py/emitcommon.c
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/emitcommon.c
parent2276eb808499b81f7c6e32ab1d497afa020c9379 (diff)
py: Remove unnecessary id_flags argument from emitter's load_fast.
Saves 24 bytes in bare-arm.
Diffstat (limited to 'py/emitcommon.c')
-rw-r--r--py/emitcommon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitcommon.c b/py/emitcommon.c
index 4d909839a..8011c0fb0 100644
--- a/py/emitcommon.c
+++ b/py/emitcommon.c
@@ -44,7 +44,7 @@ void emit_common_load_id(emit_t *emit, const emit_method_table_t *emit_method_ta
} else if (id->kind == ID_INFO_KIND_GLOBAL_EXPLICIT) {
EMIT(load_global, qst);
} else if (id->kind == ID_INFO_KIND_LOCAL) {
- EMIT(load_fast, qst, id->flags, id->local_num);
+ EMIT(load_fast, qst, id->local_num);
} else if (id->kind == ID_INFO_KIND_CELL || id->kind == ID_INFO_KIND_FREE) {
EMIT(load_deref, qst, id->local_num);
} else {