aboutsummaryrefslogtreecommitdiff
path: root/py/emitnative.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-10-07 11:56:24 +1100
committerDamien George <damien.p.george@gmail.com>2019-12-12 20:15:28 +1100
commit360d972c16dd818462be7699badb6478639924c1 (patch)
tree205c5021c69ce41b4b3b8b5101bcd9975709824c /py/emitnative.c
parentb47e155bd07e5765b804c404411825b15378c0b6 (diff)
py/nativeglue: Add new header file with native function table typedef.
Diffstat (limited to 'py/emitnative.c')
-rw-r--r--py/emitnative.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/emitnative.c b/py/emitnative.c
index fbf665914..07b984b78 100644
--- a/py/emitnative.c
+++ b/py/emitnative.c
@@ -47,7 +47,7 @@
#include <assert.h>
#include "py/emit.h"
-#include "py/bc.h"
+#include "py/nativeglue.h"
#include "py/objstr.h"
#if MICROPY_DEBUG_VERBOSE // print debugging info
@@ -687,7 +687,7 @@ STATIC void emit_native_end_pass(emit_t *emit) {
#if !MICROPY_DYNAMIC_COMPILER
// Store mp_fun_table pointer just after qstrs
// (but in dynamic-compiler mode eliminate dependency on mp_fun_table)
- emit->const_table[nqstr] = (mp_uint_t)(uintptr_t)mp_fun_table;
+ emit->const_table[nqstr] = (mp_uint_t)(uintptr_t)&mp_fun_table;
#endif
#if MICROPY_PERSISTENT_CODE_SAVE