py: Remove unnecessary id_flags argument from emitter's load_fast.

Saves 24 bytes in bare-arm.
This commit is contained in:
Damien George
2015-01-16 12:24:49 +00:00
parent 2276eb8084
commit 0abb5609b0
6 changed files with 9 additions and 9 deletions

View File

@@ -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 {