blob: ae32a8616b53b134dbe126064abbed1e14fbcd24 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
int a = 4;
int3 b = int3(0, 2, 0);
int3 const r = (a % b);
return;
}