The major improvements are: - Extended schedule tree support - AST generation from schedule trees llvm-svn: 232709
9 lines
149 B
C
9 lines
149 B
C
{
|
|
for (int c0 = 0; c0 <= 3; c0 += 1)
|
|
A(c0);
|
|
for (int c0 = 4; c0 <= 6; c0 += 1)
|
|
A(c0);
|
|
for (int c0 = 7; c0 <= 99; c0 += 1)
|
|
A(c0);
|
|
}
|