summaryrefslogtreecommitdiffstatshomepage
path: root/py/showbc.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-11 01:41:11 -0800
committerDamien George <damien.p.george@gmail.com>2014-01-11 01:41:11 -0800
commit683466e55f2221cbd6b05106732c885bd324bc21 (patch)
tree714b75f2779b79b826d745c13f725835001f787f /py/showbc.c
parentad97f2a49ea723cf21f828c99e0075ff1fd0680a (diff)
parentb8698fca75018b5cacaf9b2fdfd821f86b8acaf4 (diff)
downloadmicropython-683466e55f2221cbd6b05106732c885bd324bc21.tar.gz
micropython-683466e55f2221cbd6b05106732c885bd324bc21.zip
Merge pull request #138 from chipaca/unify_bops
Merge RT_COMPARE_OPs with RT_BINARY_OPs.
Diffstat (limited to 'py/showbc.c')
-rw-r--r--py/showbc.c5
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);