blob: 6d9541386b64bc37ce501411c51873e0fdbc1723 [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
const int3 a = int3(1, 2, 3);
const int3 b = int3(4, 5, 6);
const int3 r = (a | b);
return;
}