blob: b59a34e43e3a98ceb1393d9d18ab4d0d5b75b668 [file]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
const constant half2x4* u;
};
void a(half2x4 m) {
}
void b(half4 v) {
}
void c(half f_1) {
}
kernel void f(const constant half2x4* u [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.u=u};
a((*tint_module_vars.u));
b((*tint_module_vars.u)[1u]);
b((*tint_module_vars.u)[1u].ywxz);
c((*tint_module_vars.u)[1u].x);
c((*tint_module_vars.u)[1u].ywxz.x);
}