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