blob: e87a505002dec1097229695288ef1151ed829155 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct str {
int i;
};
struct tint_module_vars_struct {
threadgroup str* S;
};
struct tint_symbol_2 {
str tint_symbol_1;
};
void func(threadgroup int* const pointer) {
(*pointer) = 42;
}
void tint_symbol_inner(uint tint_local_index, tint_module_vars_struct tint_module_vars) {
if ((tint_local_index == 0u)) {
(*tint_module_vars.S) = str{};
}
threadgroup_barrier(mem_flags::mem_threadgroup);
func((&(*tint_module_vars.S).i));
}
kernel void tint_symbol(uint tint_local_index [[thread_index_in_threadgroup]], threadgroup tint_symbol_2* v [[threadgroup(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.S=(&(*v).tint_symbol_1)};
tint_symbol_inner(tint_local_index, tint_module_vars);
}