blob: 96dba81ec45199ee9d7c5a2b6f3e0d360f12dfd7 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
uint3 a = uint3(1u, 2u, 3u);
uint b = 0u;
uint3 const r = (a % (b + b));
return;
}