diff options
author | Damien George <damien@micropython.org> | 2022-05-26 12:22:07 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-05-26 12:22:07 +1000 |
commit | 4290d51320144c5de5dade73adc8d4c12e339b77 (patch) | |
tree | 5f7f3c0f29b7ace4f3a71ffbc8e26011f5ebf6f4 /mpy-cross | |
parent | cca08922d9ce78afba419a8303d88b5c123f0baa (diff) | |
download | micropython-4290d51320144c5de5dade73adc8d4c12e339b77.tar.gz micropython-4290d51320144c5de5dade73adc8d4c12e339b77.zip |
py/emitinlinethumb: Make float instruction use dynamically selectable.
This allows mpy-cross to dynamically select whether ARMv7-M float
instructions are supported in @micropython.asm_thumb functions.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'mpy-cross')
-rw-r--r-- | mpy-cross/mpconfigport.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mpy-cross/mpconfigport.h b/mpy-cross/mpconfigport.h index 11aeaeeab7..95922d04ff 100644 --- a/mpy-cross/mpconfigport.h +++ b/mpy-cross/mpconfigport.h @@ -42,7 +42,6 @@ #define MICROPY_EMIT_X86 (1) #define MICROPY_EMIT_THUMB (1) #define MICROPY_EMIT_INLINE_THUMB (1) -#define MICROPY_EMIT_INLINE_THUMB_FLOAT (1) #define MICROPY_EMIT_ARM (1) #define MICROPY_EMIT_XTENSA (1) #define MICROPY_EMIT_INLINE_XTENSA (1) |