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