Skip to content

Commit 7aa9c39

Browse files
committed
argh
1 parent 374fb93 commit 7aa9c39

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/kitchen_sink/kitchen_sink.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ float __attribute__((noinline)) foox(float x, float b) {
6363
return x * b;
6464
}
6565

66-
uint __noinline const_funcs_returning_int(float x, int n) {
66+
uint __noinline const_funcs_returning_int(__unused float x, int n) {
6767
return __fast_mul(n, 7)
6868
#if PICO_FLOAT_HAS_FLOAT_TO_FIX32_M_CONVERSIONS
6969
+ float2fix(x, 7)
@@ -76,7 +76,7 @@ uint __noinline const_funcs_returning_int(float x, int n) {
7676
;
7777
}
7878

79-
uint __noinline non_const_funcs_returning_int(float x, int n) {
79+
uint __noinline non_const_funcs_returning_int(__unused float x, int n) {
8080
return __fast_mul(n, n)
8181
#if PICO_FLOAT_HAS_FLOAT_TO_FIX32_M_CONVERSIONS
8282
+ float2fix(x, n)

0 commit comments

Comments
 (0)