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