blob: e5e75d33b21d9d6b6e4bd62533a931735b283cf2 [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
const int a = 1;
const int b = 2;
const int r = (a % (b == 0 ? 1 : b));
return;
}