blob: 9b8e05cebea3cc2d0ca2cd4a5770411ea4aaff90 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void atan2_034ace() {
float res = 0.78539818525314331055f;
}
fragment void fragment_main() {
atan2_034ace();
return;
}
kernel void compute_main() {
atan2_034ace();
return;
}
struct VertexOutput {
float4 pos;
};
struct tint_symbol {
float4 pos [[position]];
};
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
atan2_034ace();
return out;
}
vertex tint_symbol vertex_main() {
VertexOutput const inner_result = vertex_main_inner();
tint_symbol wrapper_result = {};
wrapper_result.pos = inner_result.pos;
return wrapper_result;
}