Browse Source

py: Guard against redef of nlr_push with DEBUG + MICROPY_NLR_SETJMP.

pull/1139/merge
stijn 10 years ago
committed by Damien George
parent
commit
803264bb17
  1. 2
      py/nlr.h

2
py/nlr.h

@ -99,6 +99,7 @@ void nlr_jump_fail(void *val);
nlr_jump(_val); \ nlr_jump(_val); \
} while (0) } while (0)
#if !MICROPY_NLR_SETJMP
#define nlr_push(val) \ #define nlr_push(val) \
assert(MP_STATE_VM(nlr_top) != val),nlr_push(val) assert(MP_STATE_VM(nlr_top) != val),nlr_push(val)
@ -107,6 +108,7 @@ void nlr_jump_fail(void *val);
printf("nlr_push: before: nlr_top=%p, val=%p\n", MP_STATE_VM(nlr_top), val),assert(MP_STATE_VM(nlr_top) != val),nlr_push(val) printf("nlr_push: before: nlr_top=%p, val=%p\n", MP_STATE_VM(nlr_top), val),assert(MP_STATE_VM(nlr_top) != val),nlr_push(val)
#endif #endif
*/ */
#endif
#endif #endif

Loading…
Cancel
Save