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