blob: 5a342b00488c99889f5b43390ce9b74ce30144d7 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void A() {
}
void _A() {
}
void B() {
A();
}
void _B() {
_A();
}
kernel void tint_symbol() {
B();
_B();
return;
}