blob: 1f2f7b2187d2ea4a68c5d09521e4065379bd5c8d [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 a = 1;
int b = 0;
int const r = tint_div_i32(a, (b + b));
}