Diff of /test/stmt-for.c [000000] .. [c307d5]  Maximize  Restore

Switch to unified view

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