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