Files
clang-p2996/libclc/amdgcn/lib/workitem/get_global_offset.cl
Matt Arsenault 2ce3d94a01 amdgcn: Correct return types to be size_t
llvm-svn: 279343
2016-08-19 22:49:39 +00:00

12 lines
249 B
Common Lisp

#include <clc/clc.h>
_CLC_DEF size_t get_global_offset(uint dim)
{
__attribute__((address_space(2))) uint * ptr =
(__attribute__((address_space(2))) uint *)
__builtin_amdgcn_implicitarg_ptr();
if (dim < 3)
return ptr[dim + 1];
return 0;
}