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