blob: 34063d18b02264b59440751b36fe63e348e64546 [file] [log] [blame]
SKIP: FAILED
#include <metal_stdlib>
using namespace metal;
kernel void f() {
int3 const a = int3(1, 2, 3);
int const b = 0;
int3 const r = tint_mod_v3i32(a, int3(b));
}
int3 tint_mod_v3i32(int3 lhs, int3 rhs) {
int3 const v = select(rhs, int3(1), ((rhs == int3(0)) | ((lhs == int3((-2147483647 - 1))) & (rhs == int3(-1)))));
return (lhs - ((lhs / v) * v));
}
program_source:7:18: error: use of undeclared identifier 'tint_mod_v3i32'
int3 const r = tint_mod_v3i32(a, int3(b));
^