blob: 67af20b052ae6d57265f82aa9100b2d900010db7 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
int3 tint_mod_v3i32(int3 lhs, int3 rhs) {
int3 const v = select(rhs, int3(1), ((rhs == int3(0)) | ((lhs == int3((-2147483647 - 1))) & (rhs == int3(-1)))));
return (lhs - ((lhs / v) * v));
}
kernel void f() {
int a = 4;
int3 b = int3(0, 2, 0);
int3 const v_1 = (b + b);
int3 const r = tint_mod_v3i32(int3(a), v_1);
}