blob: fcd5d0fc6ea287cff090329f30b3b4d6f4f46d4e [file]
#include <metal_stdlib>
using namespace metal;
void A() {
}
void _A() {
}
void B() {
(A());
}
void _B() {
(_A());
}
[[max_total_threads_per_threadgroup(1)]]
kernel void v() {
(B());
(_B());
}