skia2/resources/sksl/inliner/InlineKeywordOverridesThreshold.sksl

12 lines
291 B
Plaintext
Raw Normal View History

inline int tooBig(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;
return x;
}
void main() {
int y = 0;
y = tooBig(y);
y = tooBig(y);
}