Diff of /test/stmt-while.c [000000] .. [501682]  Maximize  Restore

Switch to unified view

a b/test/stmt-while.c
1
2
void func()
3
{
4
    while (x < 10)
5
    {
6
        x = x / 2;
7
    }
8
}