summaryrefslogtreecommitdiff
path: root/py/runtime0.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-01-15 14:41:41 +0000
committerDamien George <damien.p.george@gmail.com>2015-04-03 15:05:53 +0100
commit4cd9ced8dc381ee6601cfd762f87ab02d9e18cb7 (patch)
tree82d0b7c8fef684b6c964e6598dca98a9d63653dd /py/runtime0.h
parent2cc5473021c221a7c5ad942c423523679452e1be (diff)
py: Implement closures in native code generator.
Currently supports only x64 and Thumb2 archs.
Diffstat (limited to 'py/runtime0.h')
-rw-r--r--py/runtime0.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/py/runtime0.h b/py/runtime0.h
index b96e9c384..6fddace35 100644
--- a/py/runtime0.h
+++ b/py/runtime0.h
@@ -148,6 +148,8 @@ typedef enum {
MP_F_UNPACK_EX,
MP_F_DELETE_NAME,
MP_F_DELETE_GLOBAL,
+ MP_F_NEW_CELL,
+ MP_F_MAKE_CLOSURE_FROM_RAW_CODE,
MP_F_NUMBER_OF,
} mp_fun_kind_t;