diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-11 09:37:41 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-11 09:37:41 +0000 |
commit | 8d4ccc49ed8bca34579982a5a96b2b50da86d985 (patch) | |
tree | c22ac1b289b0011578164e235e5ae4b152ae567c /py/runtime0.h | |
parent | 25042b19d2310260e22d54ba09a124d5aaf4f512 (diff) | |
parent | 683466e55f2221cbd6b05106732c885bd324bc21 (diff) |
Merge branch 'master' of github.com:dpgeorge/micropython
Diffstat (limited to 'py/runtime0.h')
-rw-r--r-- | py/runtime0.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/py/runtime0.h b/py/runtime0.h index 97dbe5ddb..641fdaa9c 100644 --- a/py/runtime0.h +++ b/py/runtime0.h @@ -31,9 +31,6 @@ typedef enum { RT_BINARY_OP_INPLACE_TRUE_DIVIDE, RT_BINARY_OP_INPLACE_MODULO, RT_BINARY_OP_INPLACE_POWER, -} rt_binary_op_t; - -typedef enum { RT_COMPARE_OP_LESS, RT_COMPARE_OP_MORE, RT_COMPARE_OP_EQUAL, @@ -45,7 +42,7 @@ typedef enum { RT_COMPARE_OP_IS, RT_COMPARE_OP_IS_NOT, RT_COMPARE_OP_EXCEPTION_MATCH, -} rt_compare_op_t; +} rt_binary_op_t; typedef enum { RT_F_LOAD_CONST_DEC = 0, @@ -71,7 +68,6 @@ typedef enum { RT_F_CALL_FUNCTION_N, RT_F_CALL_METHOD_N, RT_F_BINARY_OP, - RT_F_COMPARE_OP, RT_F_GETITER, RT_F_ITERNEXT, RT_F_NUMBER_OF, |