blob: b80acfd7f0f3e2765e12eeae3e3ce6feb08be9b3 [file]
#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));
}