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