blob: 2fd88956b93da62f4065a4ac1ab4e59f85aef35a [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
constant static volatile bool tint_preserve_loop = true;
int f() {
int i = 0;
int j = 0;
while (tint_preserve_loop) {
i = as_type<int>((as_type<uint>(i) + as_type<uint>(1)));
if ((i > 4)) {
return 1;
}
while (tint_preserve_loop) {
j = as_type<int>((as_type<uint>(j) + as_type<uint>(1)));
if ((j > 4)) {
return 2;
}
}
}
}