blob: 41243692d9eb1efe5b286e174a25b1e6242540e0 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void fma_eb25d7() {
float3 res = float3(2.0f);
}
float4 vertex_main_inner() {
fma_eb25d7();
return float4(0.0f);
}
fragment void fragment_main() {
fma_eb25d7();
}
kernel void compute_main() {
fma_eb25d7();
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.tint_symbol=vertex_main_inner()};
}