Make rt_fun_table const, so it goes in .text section.

This commit is contained in:
Damien
2013-10-19 15:09:32 +01:00
parent 00ff04fc49
commit 1595f3257e
2 changed files with 2 additions and 2 deletions

View File

@@ -1546,7 +1546,7 @@ py_obj_t rt_iternext(py_obj_t o_in) {
}
}
void *rt_fun_table[RT_F_NUMBER_OF] = {
const void *const rt_fun_table[RT_F_NUMBER_OF] = {
rt_load_const_str,
rt_load_name,
rt_load_global,