blob: 4523947e74d00a6479f71c0f96789c99f7b13b8c [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
uint tint_mod_u32(uint lhs, uint rhs) {
uint const v = select(rhs, 1u, (rhs == 0u));
return (lhs - ((lhs / v) * v));
}
kernel void f() {
uint const a = 1u;
uint const b = 2u;
uint const r = tint_mod_u32(a, b);
}