aboutsummaryrefslogtreecommitdiff
path: root/py/mpstate.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-03-09 10:59:25 +1100
committerDamien George <damien.p.george@gmail.com>2019-03-14 12:22:25 +1100
commitd9d92f27d7cce287850d971abf3104d2230092fa (patch)
treee69b50bfa4b143f0a6e4efe76fc1d9834e7356fc /py/mpstate.h
parent0e4c24ec08c19773b26a662abb133c05b474b1fa (diff)
py/compile: Add support to select the native emitter at runtime.
Diffstat (limited to 'py/mpstate.h')
-rw-r--r--py/mpstate.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/mpstate.h b/py/mpstate.h
index 98371ca64..149660040 100644
--- a/py/mpstate.h
+++ b/py/mpstate.h
@@ -46,6 +46,7 @@ typedef struct mp_dynamic_compiler_t {
uint8_t small_int_bits; // must be <= host small_int_bits
bool opt_cache_map_lookup_in_bytecode;
bool py_builtins_str_unicode;
+ uint8_t native_arch;
} mp_dynamic_compiler_t;
extern mp_dynamic_compiler_t mp_dynamic_compiler;
#endif