Merge pull request #6163 from nicolasff/clang-13-mpy-cross

Explicitly ignore unused variables (fixes #6158)
This commit is contained in:
Scott Shawcroft 2022-03-16 10:10:58 -07:00 committed by GitHub
commit 73aeadb338
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -124,6 +124,11 @@
D |= (z & 0x1) << n; \ D |= (z & 0x1) << n; \
} \ } \
S += 1; \ S += 1; \
(void)E; \
(void)F; \
(void)A; \
(void)K; \
(void)D; \
} while (0) } while (0)
#define MP_BC_PRELUDE_SIG_DECODE(ip) \ #define MP_BC_PRELUDE_SIG_DECODE(ip) \