Hi Team,
While building an application with PDK 8.2 I got compiler error which ask me to change how the code works.
/**********************************************************************************
For example -->
for(j = 0; depth < current_depth; j = j + 1)
{
}
**********************************************************************************/
In the above loop variable depth & current_depth don't change inside the loop for which the compiler is showing error.
The code which i am porting is tool generated so we aren't suppose to change it.
Ideally it should not give such errors for the logic inside the loops.
Please suggest how I should avoid these kind of issues. Is there any flags that we need to disable in the makefile to avoid such errors.
Thanks & Regards,
Tanvi