blob: 3f687e5cc3da47e84d9bd75954879c3ff5525ca4 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void asin_a5dd88() {
float2 res = float2(0.5f);
}
fragment void fragment_main() {
asin_a5dd88();
return;
}
kernel void compute_main() {
asin_a5dd88();
return;
}
struct VertexOutput {
float4 pos;
};
struct tint_symbol {
float4 pos [[position]];
};
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
asin_a5dd88();
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;
}