diff options
author | Damien <damien.p.george@gmail.com> | 2013-11-02 20:34:54 +0000 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-11-02 20:34:54 +0000 |
commit | 6ba1314265e07f79e18d52f04435c5c846cb9405 (patch) | |
tree | ac86d782c6f839e324fa96e27344e9d56bd9a2e9 /py/runtime.h | |
parent | 7410e440aba6826629e850f69a38615ad1039814 (diff) |
Fix bug: emit native didn't clear last_was_return in label_assign.
Diffstat (limited to 'py/runtime.h')
-rw-r--r-- | py/runtime.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/py/runtime.h b/py/runtime.h index 541c4de8f..a86737883 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -48,7 +48,8 @@ typedef enum { } rt_compare_op_t; typedef enum { - RT_F_LOAD_CONST_STR = 0, + RT_F_LOAD_CONST_DEC = 0, + RT_F_LOAD_CONST_STR, RT_F_LOAD_NAME, RT_F_LOAD_GLOBAL, RT_F_LOAD_BUILD_CLASS, |