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