From df4b4f31effb663978064274e4077cfbcacfab2a Mon Sep 17 00:00:00 2001 From: Damien Date: Sat, 19 Oct 2013 18:28:01 +0100 Subject: Make grammar rules const so the go in .text section. --- py/runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/runtime.h') diff --git a/py/runtime.h b/py/runtime.h index 86d59f24e..dc7ecc617 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -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)(); -- cgit v1.2.3