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