blob: ae19d6c8a1c45e441fadcacfaf141a99a7a159c7 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
kernel void f() {
float const a = 1.0f;
float const b = 2.0f;
float const r = (a - b);
return;
}