blob: c3d64df07b108c8838f8715d2abd5951fead8709 [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 + b));
return;
}