summaryrefslogtreecommitdiff
path: root/kernels/compiler_lower_return0.cl
blob: fd9846efd6e7fffd31ea0ea0b5e06e19d98ef6d9 (plain)
1
2
3
4
5
6
7
8
__kernel void
compiler_lower_return0(__global int *src, __global int *dst) {
  const int id = get_global_id(0);
  dst[id] = id;
  if (src[id] > 0) return;
  dst[id] = src[id];
}