diff options
author | Damien George <damien.p.george@gmail.com> | 2019-12-22 22:04:45 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-12-23 00:07:03 +1100 |
commit | 300eb65ae75857b247fc39fbe677f6e28a7a259d (patch) | |
tree | 7d7b415fa5f9beb1e81fa96c94883dfb1fb09543 /py | |
parent | 42e45bd69491e56d4baa681eb34f13ca1c4bd1ba (diff) |
py/nlrx86: Silence possible warnings about unused nlr argument.
Diffstat (limited to 'py')
-rw-r--r-- | py/nlrx86.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/py/nlrx86.c b/py/nlrx86.c index 6195db63c..461b459e2 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 |