xref: /aosp_15_r20/external/skia/resources/sksl/runtime/LargeProgram_ZeroIterFor.rts (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1half4 main(float2 xy) {
2    int i = 0;
3
4    for (int a=0; a<10;  ++a) { // 10
5    for (int b=0; b<0;   ++b) { // 0
6    for (int c=0; c<100; ++c) { // 0
7    for (int d=0; d<100; ++d) { // 0
8    for (int e=0; e<100; ++e) { // 0
9    for (int f=0; f<100; ++f) { // 0
10        ++i;
11    }}}}}}
12
13    return half4(i);
14}
15