blob: 58219fa606349da667dbc93e37482ccc56156160 [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 = {.s=s};
f(1, tint_module_vars);
}