blob: 0a3dd4195ad2b83d39454ca420858dccae375e1b [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
int tint_div(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 = 0;
int const c = tint_div(a, b);
return;
}