blob: c78571cf427b04292afd61ce900111e2e332910d [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
float a = 4.0f;
float3 b = float3(0.0f, 2.0f, 0.0f);
float3 const r = (a / (b + b));
return;
}