From 300eb65ae75857b247fc39fbe677f6e28a7a259d Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 22 Dec 2019 22:04:45 +1100 Subject: [PATCH] py/nlrx86: Silence possible warnings about unused nlr argument. --- py/nlrx86.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/py/nlrx86.c b/py/nlrx86.c index 6195db63cd..461b459e21 100644 --- a/py/nlrx86.c +++ b/py/nlrx86.c @@ -56,9 +56,7 @@ __attribute__((used)) unsigned int nlr_push_tail(nlr_buf_t *nlr); __attribute__((naked)) #endif unsigned int nlr_push(nlr_buf_t *nlr) { - #if !USE_NAKED (void)nlr; - #endif __asm volatile ( #if UNDO_PRELUDE