blob: 64b18553854e3f6e7e04eb3653c96f3113b4f490 [file] [log] [blame]
half4 main(float2 xy)
{
int i = 0;
for (int a = 0;a < 10; ++a)
{
for (int b = 0;b < 0; ++b)
{
for (int c = 0;c < 100; ++c)
{
for (int d = 0;d < 100; ++d)
{
for (int e = 0;e < 100; ++e)
{
for (int f = 0;f < 100; ++f)
{
++i;
}
}
}
}
}
}
return half4(half4(half(i)));
}