blob: 613530d5b0d1c35a67c3e5a80ba839ff60a2b600 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
int func(int value, thread int* const pointer) {
return as_type<int>((as_type<uint>(value) + as_type<uint>(*(pointer))));
}
kernel void tint_symbol() {
int i = 123;
int const r = func(i, &(i));
return;
}