blob: bc62d8d27f43dfd127e51bd459a330c1fef6d4d4 [file] [log] [blame] [edit]
#include <metal_stdlib>
using namespace metal;
void f(int a) {
int const a_1 = a;
int const b = a_1;
}
[[max_total_threads_per_threadgroup(1)]]
kernel void v() {
f(1);
}