Re: [dpdk-dev] [PATCH] test-compress-perf: fix unused-but-set-variable error

2021-10-29 Thread David Marchand
On Fri, Oct 29, 2021 at 7:18 PM Jim Harris wrote: > > clang-13 rightfully complains that the total_deq_ops > variable in cperf_cyclecount_op_setup is set but not > used, since the final accumulated total_deq_ops > results isn't used anywhere. So just remove the > total_deq_ops variable. Unused fr

[dpdk-dev] [PATCH] test-compress-perf: fix unused-but-set-variable error

2021-10-29 Thread Jim Harris
clang-13 rightfully complains that the total_deq_ops variable in cperf_cyclecount_op_setup is set but not used, since the final accumulated total_deq_ops results isn't used anywhere. So just remove the total_deq_ops variable. Signed-off-by: Jim Harris --- app/test-compress-perf/comp_perf_test_cy