We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abbc3ae commit 93f04d8Copy full SHA for 93f04d8
src/libm-benchmarks/bench.h
@@ -11,7 +11,7 @@
11
for(int j=0;j<ITER;j++) { \
12
type_in *p = (type_in *)(arg); \
13
for(int i=0;i<N;i++){ \
14
- out = funcName(*p++); \
+ __attribute__((unused)) type_out out = funcName(*p++); \
15
} \
16
17
uint64_t t1 = Sleef_currentTimeMicros(); \
@@ -26,7 +26,7 @@
26
27
type_in *p1 = (type_in *)(arg1), *p2 = (type_in *)(arg2); \
28
29
- out = funcName(*p1++, *p2++); \
+ __attribute__((unused)) type_out out = funcName(*p1++, *p2++); \
30
31
32
0 commit comments