diff options
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); |