blob: fc31429f674183379869f667bd4e06d229bccd98 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
int f() {
int i = 0;
while (true) {
if ((i > 4)) {
return i;
}
{
i = (i + 1);
}
}
return 0;
}