Skip to content
Snippets Groups Projects
Commit e2835c16 authored by Damien George's avatar Damien George
Browse files

py: Oops, fix emitcpy to compile with latest changes.

parent b5fbd0ba
No related branches found
No related tags found
No related merge requests found
...@@ -230,7 +230,7 @@ STATIC void emit_cpy_load_const_verbatim_str(emit_t *emit, const char *str) { ...@@ -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); emit_pre(emit, 1, 3);
if (emit->pass == PASS_3) { if (emit->pass == PASS_3) {
printf("LOAD_FAST %d %s\n", local_num, qstr_str(qstr)); printf("LOAD_FAST %d %s\n", local_num, qstr_str(qstr));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment