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