blob: 6dd610fcad8773f62e5834a6f4d92eeefa0f0e6c [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void atan2_96057c() {
float res = atan2(1.0f, 1.0f);
}
vertex void vertex_main() {
atan2_96057c();
return;
}
fragment void fragment_main() {
atan2_96057c();
return;
}
kernel void compute_main() {
atan2_96057c();
return;
}