From d3ebe4829d920542e5af462e75179e4f0cadb946 Mon Sep 17 00:00:00 2001 From: Damien George Date: Tue, 7 Jan 2014 15:20:33 +0000 Subject: Factor and simplify Makefile's and mpconfig, part 2. --- py/showbc.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'py/showbc.c') diff --git a/py/showbc.c b/py/showbc.c index eb7d41b24d..aea0aff67a 100644 --- a/py/showbc.c +++ b/py/showbc.c @@ -8,6 +8,8 @@ #include "mpconfig.h" #include "bc0.h" +#if MICROPY_SHOW_BC + #define DECODE_UINT do { unum = *ip++; if (unum > 127) { unum = ((unum & 0x3f) << 8) | (*ip++); } } while (0) #define DECODE_ULABEL do { unum = (ip[0] | (ip[1] << 8)); ip += 2; } while (0) #define DECODE_SLABEL do { unum = (ip[0] | (ip[1] << 8)) - 0x8000; ip += 2; } while (0) @@ -363,3 +365,5 @@ void mp_show_byte_code(const byte *ip, int len) { printf("\n"); } } + +#endif // MICROPY_SHOW_BC -- cgit v1.2.3