blob: ed1bd8a633d15775095348b6a5b1c4cb1495db7b [file] [log] [blame]
int tint_mod(int lhs, int rhs) {
const int rhs_or_one = (((rhs == 0) | ((lhs == -2147483648) & (rhs == -1))) ? 1 : rhs);
if (any(((uint((lhs | rhs_or_one)) & 2147483648u) != 0u))) {
return (lhs - ((lhs / rhs_or_one) * rhs_or_one));
} else {
return (lhs % rhs_or_one);
}
}
[numthreads(1, 1, 1)]
void f() {
int a = 1;
int b = 0;
const int r = tint_mod(a, (b + b));
return;
}