blob: b1b7839af578aa199fb76cd54ea29792012e7bc5 [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();
}