From 00a9d138b2e66c9e144d30f52ed9dfe8863a6143 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 12 Apr 2014 00:32:38 +0300 Subject: [PATCH] showbc: Dump LOAD_NULL. --- py/showbc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/py/showbc.c b/py/showbc.c index c1e420f433..8d6e867b14 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -106,6 +106,10 @@ void mp_byte_code_print(const byte *ip, int len) { printf("LOAD_CONST_STRING %s", qstr_str(qstr)); break; + case MP_BC_LOAD_NULL: + printf("LOAD_NULL"); + break; + case MP_BC_LOAD_FAST_0: printf("LOAD_FAST_0"); break;