diff options
author | AZ Huang <aitjcize@gmail.com> | 2014-04-15 15:57:01 +0800 |
---|---|---|
committer | AZ Huang <aitjcize@gmail.com> | 2014-04-15 17:08:42 +0800 |
commit | 9309d9982f4dc3ec60a314446943c0b19edc5f9e (patch) | |
tree | e35144681b5e2c025ebb499507d6d12f066e6377 /py/mpconfig.h | |
parent | 8c1bec4ae75d4d042a6fdeda00f7e1e495ed14e9 (diff) | |
download | micropython-9309d9982f4dc3ec60a314446943c0b19edc5f9e.tar.gz micropython-9309d9982f4dc3ec60a314446943c0b19edc5f9e.zip |
Move entry_table to separated header file.
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r-- | py/mpconfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index 58ef43d316..7fd7067953 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -156,8 +156,8 @@ typedef double mp_float_t; // Whether to use computed gotos in the VM, or a switch // Computed gotos are roughly 10% faster, and increase VM code size by a little -#ifndef MICROPY_USE_COMPUTED_GOTO -#define MICROPY_USE_COMPUTED_GOTO (0) +#ifndef MICROPY_USE_COMPUTED_GOTOS +#define MICROPY_USE_COMPUTED_GOTOS (0) #endif // Additional builtin function definitions - see builtintables.c:builtin_object_table for format. |