diff options
| author | Damien George | 2014-01-04 18:44:46 +0000 |
|---|---|---|
| committer | Damien George | 2014-01-04 18:44:46 +0000 |
| commit | e9906ac3d771a312b05d76e42aee8e806dd0d128 (patch) | |
| tree | 95cd30d3a32e715fc2c9553ba1ccb1a72bf86dd8 /py/showbc.c | |
| parent | 4d4bc9533edf3f82c5d19b79be9891521b267837 (diff) | |
Add ellipsis object.
Diffstat (limited to 'py/showbc.c')
| -rw-r--r-- | py/showbc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/showbc.c b/py/showbc.c index a3bfa2833..eb7d41b24 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -46,6 +46,10 @@ void mp_show_byte_code(const byte *ip, int len) { printf("LOAD_CONST_TRUE"); break; + case MP_BC_LOAD_CONST_ELLIPSIS: + printf("LOAD_CONST_ELLIPSIS"); + break; + case MP_BC_LOAD_CONST_SMALL_INT: unum = (ip[0] | (ip[1] << 8) | (ip[2] << 16)) - 0x800000; ip += 3; |
