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