File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 27
27
#include "py/mpstate.h"
28
28
29
29
#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
31
31
#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
33
33
unsigned int nlr_push_tail (nlr_buf_t * nlr ) asm("nlr_push_tail" );
34
34
#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
36
36
__attribute__((used )) unsigned int nlr_push_tail (nlr_buf_t * nlr );
37
37
#endif
38
38
#endif
You can’t perform that action at this time.
0 commit comments