blob: d3d0a20706bbee94608a91f900a1bf1f3d9f7662 [file] [log] [blame]
int3 tint_div_v3i32(int3 lhs, int3 rhs) {
return (lhs / ((((rhs == (0).xxx) | ((lhs == (-2147483648).xxx) & (rhs == (-1).xxx)))) ? ((1).xxx) : (rhs)));
}
[numthreads(1, 1, 1)]
void f() {
int3 a = int3(1, 2, 3);
int b = 4;
int3 r = tint_div_v3i32(a, int3((b).xxx));
}