diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-19 18:28:01 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-19 18:28:01 +0100 |
commit | df4b4f31effb663978064274e4077cfbcacfab2a (patch) | |
tree | 8ac36a42472066103e33564e6e6dc4c9803a04e0 /py/runtime.c | |
parent | 4d7adce9c55a77ecec5902795208ce6ada966422 (diff) |
Make grammar rules const so the go in .text section.
Diffstat (limited to 'py/runtime.c')
-rw-r--r-- | py/runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/runtime.c b/py/runtime.c index 01fd92fcf..42e03ed43 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -1546,7 +1546,7 @@ py_obj_t rt_iternext(py_obj_t o_in) { } } -const void *const rt_fun_table[RT_F_NUMBER_OF] = { +void *const rt_fun_table[RT_F_NUMBER_OF] = { rt_load_const_str, rt_load_name, rt_load_global, |