diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-06 12:58:40 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-06 12:58:40 +0100 |
commit | cdd96dff2c017c952a238989c10f70143a8dd7d3 (patch) | |
tree | 40f3bf8b2dec68b14ff7ae66ef667b65d90b6527 /py/vm.c | |
parent | 65cad12d388423f7d9b04a5ae3d7c1b5b176a2da (diff) | |
download | micropython-cdd96dff2c017c952a238989c10f70143a8dd7d3.tar.gz micropython-cdd96dff2c017c952a238989c10f70143a8dd7d3.zip |
py: Implement more features in native emitter.
On x64, native emitter now passes 70 of the tests.
Diffstat (limited to 'py/vm.c')
-rw-r--r-- | py/vm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -653,14 +653,14 @@ unwind_jump: case MP_BC_MAKE_FUNCTION: DECODE_UINT; - PUSH(mp_make_function_from_id(unum, false, MP_OBJ_NULL, MP_OBJ_NULL)); + PUSH(mp_make_function_from_id(unum, MP_OBJ_NULL, MP_OBJ_NULL)); break; case MP_BC_MAKE_FUNCTION_DEFARGS: DECODE_UINT; // Stack layout: def_dict def_tuple <- TOS obj1 = POP(); - SET_TOP(mp_make_function_from_id(unum, false, obj1, TOP())); + SET_TOP(mp_make_function_from_id(unum, obj1, TOP())); break; case MP_BC_MAKE_CLOSURE: |