blob: 8e5fda030434eebe16603cfc778d7172270d39c7 [file] [log] [blame]
uniform half4 colorGreen;
void tooBig(inout int x) {
++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x;
++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x;
}
half4 main() {
int x = 0;
tooBig(x);
tooBig(x);
return colorGreen;
}