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