aboutsummaryrefslogtreecommitdiff
path: root/py/nlr.h
diff options
context:
space:
mode:
authorstijn <stijn@ignitron.net>2017-04-26 13:17:55 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-04-30 14:28:37 +0300
commit2f0ce2a6f50ba9472ce4bd8f9fe984d830e99ade (patch)
treec077ef54e067fa649217031558a82635439f3bbe /py/nlr.h
parenta7f502259131190195542abc71a3b6e3270d9062 (diff)
py: Cleanup use of global DEBUG preprocessor definition
The standard preprocessor definition to differentiate debug and non-debug builds is NDEBUG, not DEBUG, so don't rely on the latter: - just delete the use of it in objint_longlong.c as it has been stale code for years anyway (since commit [c4029e5]): SUFFIX isn't used anywhere. - replace DEBUG with MICROPY_DEBUG_NLR in nlr.h: it is rarely used anymore so can be off by default
Diffstat (limited to 'py/nlr.h')
-rw-r--r--py/nlr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/nlr.h b/py/nlr.h
index 00c1072fe..7a71ef34b 100644
--- a/py/nlr.h
+++ b/py/nlr.h
@@ -85,7 +85,7 @@ NORETURN void nlr_jump(void *val);
NORETURN void nlr_jump_fail(void *val);
// use nlr_raise instead of nlr_jump so that debugging is easier
-#ifndef DEBUG
+#ifndef MICROPY_DEBUG_NLR
#define nlr_raise(val) nlr_jump(MP_OBJ_TO_PTR(val))
#else
#include "mpstate.h"