diff options
Diffstat (limited to 'py/compile.c')
-rw-r--r-- | py/compile.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/py/compile.c b/py/compile.c index 418c1100bf..7c2c89fb52 100644 --- a/py/compile.c +++ b/py/compile.c @@ -79,6 +79,8 @@ typedef enum { #define NATIVE_EMITTER(f) emit_native_thumb_##f #elif MICROPY_EMIT_ARM #define NATIVE_EMITTER(f) emit_native_arm_##f +#elif MICROPY_EMIT_XTENSA +#define NATIVE_EMITTER(f) emit_native_xtensa_##f #else #error "unknown native emitter" #endif |