blob: e558a97f32430c05b3c25c50d1f3ce3909ce382e [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
[[max_total_threads_per_threadgroup(1)]]
kernel void f() {
int const a = 1;
int const b = 2;
int const r = (a ^ b);
}