diff options
author | John R. Lenton <jlenton@gmail.com> | 2014-01-11 00:58:59 +0000 |
---|---|---|
committer | John R. Lenton <jlenton@gmail.com> | 2014-01-11 00:58:59 +0000 |
commit | b8698fca75018b5cacaf9b2fdfd821f86b8acaf4 (patch) | |
tree | 714b75f2779b79b826d745c13f725835001f787f /py/showbc.c | |
parent | ad97f2a49ea723cf21f828c99e0075ff1fd0680a (diff) | |
download | micropython-b8698fca75018b5cacaf9b2fdfd821f86b8acaf4.tar.gz micropython-b8698fca75018b5cacaf9b2fdfd821f86b8acaf4.zip |
unified the bops
Diffstat (limited to 'py/showbc.c')
-rw-r--r-- | py/showbc.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/py/showbc.c b/py/showbc.c index 4ea0dd77e6..2ba81df40d 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -266,11 +266,6 @@ void mp_show_byte_code(const byte *ip, int len) { printf("BINARY_OP " UINT_FMT, unum); break; - case MP_BC_COMPARE_OP: - unum = *ip++; - printf("COMPARE_OP " UINT_FMT, unum); - break; - case MP_BC_BUILD_TUPLE: DECODE_UINT; printf("BUILD_TUPLE " UINT_FMT, unum); |