diff options
| author | Damien George | 2015-05-05 22:15:42 +0100 |
|---|---|---|
| committer | Damien George | 2015-05-05 22:15:42 +0100 |
| commit | 8872abcbc4107c8d3eaf148a03813e607aa30bfb (patch) | |
| tree | 1ada91c0578c1aac3770bf145a4611a16a58b94d /py/vm.c | |
| parent | 37c6555b4419eb6027a345ee0c3e759d50da771f (diff) | |
py: Remove LOAD_CONST_ELLIPSIS bytecode, use LOAD_CONST_OBJ instead.
Ellipsis constant is rarely used so no point having an extra bytecode
for it.
Diffstat (limited to 'py/vm.c')
| -rw-r--r-- | py/vm.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -192,10 +192,6 @@ dispatch_loop: PUSH(mp_const_true); DISPATCH(); - ENTRY(MP_BC_LOAD_CONST_ELLIPSIS): - PUSH((mp_obj_t)&mp_const_ellipsis_obj); - DISPATCH(); - ENTRY(MP_BC_LOAD_CONST_SMALL_INT): { mp_int_t num = 0; if ((ip[0] & 0x40) != 0) { |
