1cb93a386Sopenharmony_cihalf4 main(float2 xy) { 2cb93a386Sopenharmony_ci int i; 3cb93a386Sopenharmony_ci 4cb93a386Sopenharmony_ci for (int a=0; a<10000; ++a) // 10000 5cb93a386Sopenharmony_ci for (int b=0; b<10000; ++b) // 100000000 6cb93a386Sopenharmony_ci for (int c=0; c<10000; ++c) // 1000000000000 7cb93a386Sopenharmony_ci for (int d=0; d<10000; ++d) // 10000000000000000 8cb93a386Sopenharmony_ci for (int e=0; e<10000; ++e) // 100000000000000000000 9cb93a386Sopenharmony_ci for (int f=0; f<10000; ++f) // 1000000000000000000000000 10cb93a386Sopenharmony_ci for (int g=0; g<10000; ++g) // 10000000000000000000000000000 11cb93a386Sopenharmony_ci for (int h=0; h<10000; ++h) // 100000000000000000000000000000000 (over 2^100) 12cb93a386Sopenharmony_ci ++i; 13cb93a386Sopenharmony_ci 14cb93a386Sopenharmony_ci return half4(0); 15cb93a386Sopenharmony_ci} 16