blob: b79023738b868a3a541451de3e745f857f39e22c [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void a() {
}
void a__() {
}
void b() {
a();
}
void b__() {
a__();
}
kernel void v() {
b();
b__();
}