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

This commit is contained in:
Paul Sokolovsky 2014-04-30 04:19:20 +03:00
parent 851c856585
commit b1ce37d32e
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
#ifdef __thumb2__
#if defined(__thumb2__) && !MICROPY_NLR_SETJMP
/* thumb callee save: bx, bp, sp, r12, r14, r14, r15 */
.syntax unified

View file

@ -1,4 +1,4 @@
#ifdef __x86_64__
#if defined(__x86_64__) && !MICROPY_NLR_SETJMP
/* x64 callee save: bx, bp, sp, r12, r13, r14, r15 */
.file "nlr.s"

View file

@ -1,4 +1,4 @@
#ifdef __i386__
#if defined(__i386__) && !MICROPY_NLR_SETJMP
/* x86 callee save: bx, di, si, bp, sp */
.file "nlr.s"