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