blob: 25c2f18e89851258faf2bc1be5533e536c4a73a4 [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 = fmod(a, b);
return;
}