blob: 6e4ba86eca7ce18102497dbd666853c22b60f7d0 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void A() {
}
void _A() {
}
void B() {
A();
}
void _B() {
_A();
}
kernel void v() {
B();
_B();
}