Skip to content
Snippets Groups Projects
Commit b1ce37d3 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

py: If setjmp NLR implementation is forced, omit native versions.

parent 851c8565
No related branches found
No related tags found
No related merge requests found
#ifdef __thumb2__
#if defined(__thumb2__) && !MICROPY_NLR_SETJMP
/* thumb callee save: bx, bp, sp, r12, r14, r14, r15 */
.syntax unified
......
#ifdef __x86_64__
#if defined(__x86_64__) && !MICROPY_NLR_SETJMP
/* x64 callee save: bx, bp, sp, r12, r13, r14, r15 */
.file "nlr.s"
......
#ifdef __i386__
#if defined(__i386__) && !MICROPY_NLR_SETJMP
/* x86 callee save: bx, di, si, bp, sp */
.file "nlr.s"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment