blob: 3a44c7b5853aaa356dc48f50a0253086fb0a51e9 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
float4 func(thread float4* const pointer) {
return (*pointer);
}
kernel void v() {
float4 F = 0.0f;
float4 const r = func((&F));
}