blob: b71cfc8aced8357325f4a63ee43999b82d9b5ac0 [file] [log] [blame]
int tint_div(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 = 2;
int r = tint_div(a, b);
return;
}