blob: 96b1555cb80d3df0eb590d11512748978d1ffb20 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
uint tint_mod(uint lhs, uint rhs) {
return (lhs % select(rhs, 1u, (rhs == 0u)));
}
kernel void f() {
uint a = 1u;
uint b = 0u;
uint const r = tint_mod(a, (b + b));
return;
}