blob: e79fd022f1dcd5df36b9f70eeccf5a29d283453b [file] [log] [blame]
#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();
}