Skip to content

Commit 73aeadb

Browse files
authored
Merge pull request #6163 from nicolasff/clang-13-mpy-cross
Explicitly ignore unused variables (fixes #6158)
2 parents af9f80d + 6573981 commit 73aeadb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

py/bc.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@
124124
D |= (z & 0x1) << n; \
125125
} \
126126
S += 1; \
127+
(void)E; \
128+
(void)F; \
129+
(void)A; \
130+
(void)K; \
131+
(void)D; \
127132
} while (0)
128133

129134
#define MP_BC_PRELUDE_SIG_DECODE(ip) \

0 commit comments

Comments
 (0)