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