blob: ee8f7775f0821e02e524e455b497523bbfb228fa [file] [log] [blame]
int tint_mod(int lhs, int rhs) {
return (lhs % (((rhs == 0) | ((lhs == -2147483648) & (rhs == -1))) ? 1 : rhs));
}
[numthreads(1, 1, 1)]
void f() {
int a = 1;
int b = 0;
const int r = tint_mod(a, (b + b));
return;
}