diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-05 13:37:10 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-05 13:37:10 +0100 |
commit | b05d707b2329a9534121e09e26eb9f8fef1917d3 (patch) | |
tree | 6c1bdbaa07b85d718283b6bfe66df15cfb1940c5 /py/asmx64.h | |
parent | 415eb6f8507cc8c912143e8173bd9b451f6af917 (diff) | |
download | micropython-b05d707b2329a9534121e09e26eb9f8fef1917d3.tar.gz micropython-b05d707b2329a9534121e09e26eb9f8fef1917d3.zip |
Further factorise PASS_1 out of specific emit code.
Diffstat (limited to 'py/asmx64.h')
-rw-r--r-- | py/asmx64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/asmx64.h b/py/asmx64.h index 4871dbff8a..34d5a48354 100644 --- a/py/asmx64.h +++ b/py/asmx64.h @@ -26,7 +26,7 @@ typedef struct _asm_x64_t asm_x64_t; -asm_x64_t* asm_x64_new(); +asm_x64_t* asm_x64_new(uint max_num_labels); void asm_x64_free(asm_x64_t* as, bool free_code); void asm_x64_start_pass(asm_x64_t *as, int pass); void asm_x64_end_pass(asm_x64_t *as); |