blob: 726613b9235cd6a2808a1f1acbd63d0442f2d040 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct frexp_result_f32 {
float fract;
int exp;
};
struct VertexOutput {
float4 pos;
};
struct vertex_main_outputs {
float4 VertexOutput_pos [[position]];
};
void frexp_4b2200() {
float arg_0 = 1.0f;
frexp_result_f32 v = {};
v.fract = frexp(arg_0, v.exp);
frexp_result_f32 res = v;
}
fragment void fragment_main() {
frexp_4b2200();
}
kernel void compute_main() {
frexp_4b2200();
}
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
frexp_4b2200();
return out;
}
vertex vertex_main_outputs vertex_main() {
vertex_main_outputs tint_wrapper_result = {};
tint_wrapper_result.VertexOutput_pos = vertex_main_inner().pos;
return tint_wrapper_result;
}