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