Re: [dpdk-dev] [PATCH] event/opdl: fix ICC fails at compile time

2018-01-25 Thread Thomas Monjalon
25/01/2018 12:03, Liang, Ma: > On 25 Jan 15:03, Zhiyong Yang wrote: > > ICC reports the issue at compile time as follows. > > error #592: variable "i" is used before its value is set > > RTE_SET_USED(i); > > > > The patch is to fix it. GCC and CLANG has been tested as well. > > > > Fixes:

Re: [dpdk-dev] [PATCH] event/opdl: fix ICC fails at compile time

2018-01-25 Thread Liang, Ma
On 25 Jan 15:03, Zhiyong Yang wrote: > ICC reports the issue at compile time as follows. > error #592: variable "i" is used before its value is set > RTE_SET_USED(i); > > The patch is to fix it. GCC and CLANG has been tested as well. > > Fixes: d548ef513cd7 ("event/opdl: add unit tests")

[dpdk-dev] [PATCH] event/opdl: fix ICC fails at compile time

2018-01-24 Thread Zhiyong Yang
ICC reports the issue at compile time as follows. error #592: variable "i" is used before its value is set RTE_SET_USED(i); The patch is to fix it. GCC and CLANG has been tested as well. Fixes: d548ef513cd7 ("event/opdl: add unit tests") Cc: liang.j...@intel.com Cc: peter.mccar...@intel.c