blob: ead132ad353863076cc7259536965a9da37ef0a8 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void func(thread int* const pointer) {
*(pointer) = 42;
}
kernel void tint_symbol() {
thread int tint_symbol_1 = 0;
func(&(tint_symbol_1));
return;
}