blob: 14717d643d8c6407dc637a1fd4d1e00bed031f3f [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;
}