blob: 33bf9ab1b4c79016709de1c41c4f37fcc50171f7 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
uint a = 1u;
uint b = 0u;
uint const r = (a % (b + b));
return;
}