File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727#include "py/mpstate.h"
2828
2929#if !MICROPY_NLR_SETJMP
30- // When not using setjmp, nlr_push_tail is called from inline asm so needs special c
30+ // When not using setjmp, nlr_push_tail is called from inline asm so needs special care
3131#if MICROPY_NLR_X86 && MICROPY_NLR_OS_WINDOWS
32- // On these 32-bit platforms make sure nlr_push_tail doesn't have a leading undersco
32+ // On these 32-bit platforms make sure nlr_push_tail doesn't have a leading underscore
3333unsigned int nlr_push_tail (nlr_buf_t * nlr ) asm("nlr_push_tail" );
3434#else
35- // LTO can't see inside inline asm functions so explicitly mark nlr_push_tail as use
35+ // LTO can't see inside inline asm functions so explicitly mark nlr_push_tail as used
3636__attribute__((used )) unsigned int nlr_push_tail (nlr_buf_t * nlr );
3737#endif
3838#endif
You can’t perform that action at this time.
0 commit comments