summaryrefslogtreecommitdiff
path: root/py/bc.h
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-11-05 22:16:22 +0000
committerDamien <damien.p.george@gmail.com>2013-11-05 22:16:22 +0000
commit40fdfe3000b1fa7f8ceb7546df93911e14e2db98 (patch)
tree5e7fcfb1848e9d790b0a53a88b7bbb9504e6ae69 /py/bc.h
parent03c9cfb01554d8b5f9468cda3748d49eb6fd94b4 (diff)
Improve allocation of stack for byte code.
Diffstat (limited to 'py/bc.h')
-rw-r--r--py/bc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/bc.h b/py/bc.h
index dc2de2f22..c29817150 100644
--- a/py/bc.h
+++ b/py/bc.h
@@ -94,5 +94,5 @@
#define PYBC_IMPORT_FROM (0xe1)
#define PYBC_IMPORT_STAR (0xe2)
-py_obj_t py_execute_byte_code(const byte *code, const py_obj_t *args, uint n_args);
+py_obj_t py_execute_byte_code(const byte *code, const py_obj_t *args, uint n_args, uint n_state);
bool py_execute_byte_code_2(const byte **ip_in_out, py_obj_t *fastn, py_obj_t **sp_in_out);