summaryrefslogtreecommitdiffstatshomepage
path: root/py/mpconfig.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-15 14:33:11 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-15 14:33:11 +0100
commit3b108e76996ed2e159895a606d652983022680a6 (patch)
tree5547f8fea65101c75b7a443db9aa3c5a16f637c3 /py/mpconfig.h
parent203bc98804dd8ad60476b531f29b6658dcffadcf (diff)
parent9413ca02fbd214915c10c7adfabb6bbc519d6b3f (diff)
downloadmicropython-3b108e76996ed2e159895a606d652983022680a6.tar.gz
micropython-3b108e76996ed2e159895a606d652983022680a6.zip
Merge pull request #493 from aitjcize/patch
Move entry_table to separated header file.
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r--py/mpconfig.h4
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.