Hi Team,
Here's an issue from the customer may need your help:
Assume that there is the following macro definition:
#define Vmax 100 #define MAX(a,b) (((a) > (b)) ? (a) : (b))
Compiling using CCS3.3, when calling the statement:
int a = Max(Vaxm, 200)
the following warning will occur:
remark: controlling expression is constant
I want to eliminate this warning, so I would like to ask if there is a command to block the remark warning information at a specific location.
--
Thanks & Regards