blob: 1f600df36634fec93de9ff907a42537b65ee9864 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device int* s;
};
void f(int a__, tint_module_vars_struct tint_module_vars) {
int const b = a__;
(*tint_module_vars.s) = b;
}
kernel void tint_symbol(device int* s [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.s=s};
f(1, tint_module_vars);
}