diff options
author | Daniel Campora <daniel@wipy.io> | 2015-04-12 23:58:04 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-04-13 00:03:41 +0200 |
commit | 99f718407336bf2bd1c07035399e9809f72d4586 (patch) | |
tree | bf38e2bed6e92bdfcf2137f82d86b92d7ce886f8 | |
parent | c69b4310c85b7f09789f75b49e706fea58e8aa7a (diff) |
cc3200: Disable MICROPY_COMP_TRIPLE_TUPLE_ASSIGN.
Because it's only a compiler optimization and increases code size.
-rw-r--r-- | cc3200/mpconfigport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/mpconfigport.h b/cc3200/mpconfigport.h index 9c93e950b..c5caa2120 100644 --- a/cc3200/mpconfigport.h +++ b/cc3200/mpconfigport.h @@ -38,7 +38,7 @@ #define MICROPY_COMP_MODULE_CONST (1) #define MICROPY_ENABLE_GC (1) #define MICROPY_ENABLE_FINALISER (1) -#define MICROPY_COMP_TRIPLE_TUPLE_ASSIGN (1) +#define MICROPY_COMP_TRIPLE_TUPLE_ASSIGN (0) #define MICROPY_STACK_CHECK (0) #define MICROPY_HELPER_REPL (1) #define MICROPY_ENABLE_SOURCE_LINE (1) |