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