This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

BUG report

run code below, look at i,j

int i;
int j;

i=254;
j=255;

while(1)
{
i=i++;
j=j++;
}

0