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