diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-11 09:37:41 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-11 09:37:41 +0000 |
commit | 8d4ccc49ed8bca34579982a5a96b2b50da86d985 (patch) | |
tree | c22ac1b289b0011578164e235e5ae4b152ae567c /py/showbc.c | |
parent | 25042b19d2310260e22d54ba09a124d5aaf4f512 (diff) | |
parent | 683466e55f2221cbd6b05106732c885bd324bc21 (diff) | |
download | micropython-8d4ccc49ed8bca34579982a5a96b2b50da86d985.tar.gz micropython-8d4ccc49ed8bca34579982a5a96b2b50da86d985.zip |
Merge branch 'master' of github.com:dpgeorge/micropython
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); |