blob: 305f1f96ec0ba04cd7efd1ce8a2af5cbc1d1c23e [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
uint leaf() {
return 0u;
}
uint branch() {
uint const leaf_result = leaf();
return leaf_result;
}
void root() {
uint const branch_result = branch();
return;
}
void x_100_1() {
return;
}
fragment void x_100() {
x_100_1();
return;
}