blob: e36af9f62d62d069cd9d3c070ac4a256e3c04824 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void some_loop_body() {
}
void f() {
for(int i = 0; (i < 5); i = (i + 1)) {
some_loop_body();
}
}