blob: d2cfc632be8f10719104092fb7c4a7667c4c5d56 [file] [log] [blame]
uint tint_mod(uint lhs, uint rhs) {
return (lhs % ((rhs == 0u) ? 1u : rhs));
}
[numthreads(1, 1, 1)]
void f() {
uint a = 1u;
uint b = 0u;
const uint r = tint_mod(a, b);
return;
}