#include <metal_stdlib> | |
using namespace metal; | |
struct frexp_result_f32 { | |
float fract; | |
int exp; | |
}; | |
void frexp_bee870() { | |
frexp_result_f32 res = frexp_result_f32{.fract=0.5f, .exp=1}; | |
} | |
fragment void fragment_main() { | |
frexp_bee870(); | |
return; | |
} | |
kernel void compute_main() { | |
frexp_bee870(); | |
return; | |
} | |
struct VertexOutput { | |
float4 pos; | |
}; | |
struct tint_symbol { | |
float4 pos [[position]]; | |
}; | |
VertexOutput vertex_main_inner() { | |
VertexOutput out = {}; | |
out.pos = float4(0.0f); | |
frexp_bee870(); | |
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; | |
} | |