summaryrefslogtreecommitdiffstatshomepage
path: root/py/nlrthumb.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/nlrthumb.c')
-rw-r--r--py/nlrthumb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/nlrthumb.c b/py/nlrthumb.c
index a61c73c036..b57d8df464 100644
--- a/py/nlrthumb.c
+++ b/py/nlrthumb.c
@@ -71,7 +71,7 @@ __attribute__((naked)) unsigned int nlr_push(nlr_buf_t *nlr) {
return 0; // needed to silence compiler warning
}
-unsigned int nlr_push_tail(nlr_buf_t *nlr) {
+__attribute__((used)) unsigned int nlr_push_tail(nlr_buf_t *nlr) {
nlr_buf_t **top = &MP_STATE_THREAD(nlr_top);
nlr->prev = *top;
*top = nlr;