Make grammar rules const so the go in .text section.

This commit is contained in:
Damien
2013-10-19 18:28:01 +01:00
parent 4d7adce9c5
commit df4b4f31ef
3 changed files with 9 additions and 9 deletions

View File

@@ -76,7 +76,7 @@ typedef enum {
RT_F_NUMBER_OF,
} rt_fun_kind_t;
extern const void *const rt_fun_table[RT_F_NUMBER_OF];
extern void *const rt_fun_table[RT_F_NUMBER_OF];
typedef machine_ptr_t py_obj_t; // must be of pointer size
typedef py_obj_t (*py_fun_0_t)();