diff options
author | Damien George <damien.p.george@gmail.com> | 2014-09-03 22:47:23 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-09-03 22:47:23 +0100 |
commit | dda46460fff56c0756adba0d63fd72b311bdbcc9 (patch) | |
tree | a93c903fe6e5e8b5f8078fb3555fa8049c1e340c /py/emitnative.c | |
parent | a669cbc690a2540f6a4cfe453fa4b5bab074d940 (diff) | |
download | micropython-dda46460fff56c0756adba0d63fd72b311bdbcc9.tar.gz micropython-dda46460fff56c0756adba0d63fd72b311bdbcc9.zip |
Code style/whitespace cleanup; remove obsolete headers.
And move the MAP_ANON redefinition from py/asmx64.c to unix/alloc.c.
Diffstat (limited to 'py/emitnative.c')
-rw-r--r-- | py/emitnative.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitnative.c b/py/emitnative.c index 6e064fc4c3..1e1596ccc4 100644 --- a/py/emitnative.c +++ b/py/emitnative.c @@ -394,7 +394,7 @@ STATIC void emit_native_end_pass(emit_t *emit) { void *f = asm_thumb_get_code(emit->as); mp_uint_t f_len = asm_thumb_get_code_size(emit->as); #elif N_ARM - void *f = asm_arm_get_code(emit->as); + void *f = asm_arm_get_code(emit->as); mp_uint_t f_len = asm_arm_get_code_size(emit->as); #endif |