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