blob: 0633ba656c3c0fbe808c76f721841faa9e6829d6 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void func(int value, thread int* pointer) {
*(pointer) = value;
return;
}
kernel void tint_symbol() {
int i = 0;
i = 123;
func(123, &(i));
return;
}