diff options
author | John R. Lenton <jlenton@gmail.com> | 2014-01-05 22:29:03 +0000 |
---|---|---|
committer | John R. Lenton <jlenton@gmail.com> | 2014-01-05 22:29:03 +0000 |
commit | ba3f87c94776538fece5e87ff1d7de547930397a (patch) | |
tree | 3112b328cff278168a1ef48fc37a65778ea9324a /py/emitnative.c | |
parent | 6e1e98f8648d327098a03ce8d175c9854dd06cc8 (diff) | |
parent | 12e2656472bf53e467c066eda6f3e177a97210ca (diff) |
Merge remote-tracking branch 'upstream/master' into list_reverse
Diffstat (limited to 'py/emitnative.c')
-rw-r--r-- | py/emitnative.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/emitnative.c b/py/emitnative.c index a29922d96..cc00c5731 100644 --- a/py/emitnative.c +++ b/py/emitnative.c @@ -34,7 +34,7 @@ #include "runtime.h" // wrapper around everything in this file -#if N_X64 || N_THUMB +#if (MICROPY_EMIT_X64 && N_X64) || (MICROPY_EMIT_THUMB && N_THUMB) #if N_X64 @@ -1319,4 +1319,4 @@ const emit_method_table_t EXPORT_FUN(method_table) = { emit_native_yield_from, }; -#endif // N_X64 || N_THUMB +#endif // (MICROPY_EMIT_X64 && N_X64) || (MICROPY_EMIT_THUMB && N_THUMB) |