blob: 456e3b9caa3a52fbead4f98f47872fc10192178a [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
uint const a = 1u;
uint const b = 0u;
uint const r = (a % b);
return;
}