blob: 39862e77ecc1deadfb286d3587bebab627af6fd2 [file] [log] [blame]
SKIP: FAILED
#include <metal_stdlib>
using namespace metal;
kernel void f() {
int const a = 1;
int const b = 0;
int const r = tint_mod_i32(a, b);
}
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));
}
program_source:7:17: error: use of undeclared identifier 'tint_mod_i32'
int const r = tint_mod_i32(a, b);
^