blob: 8403d80e0b8897c5bc198c37f32cad300ad0c3e0 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void ldexp_2bfc68() {
int2 arg_1 = int2(1);
float2 res = ldexp(float2(1.0f), arg_1);
}
float4 vertex_main_inner() {
ldexp_2bfc68();
return float4(0.0f);
}
fragment void fragment_main() {
ldexp_2bfc68();
}
kernel void compute_main() {
ldexp_2bfc68();
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.tint_symbol=vertex_main_inner()};
}