native_divide: provide function implementation instead of macro

Reviewer: Jeroen Ketema
Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu>
llvm-svn: 318067
This commit is contained in:
Jan Vesely 2017-11-13 18:28:56 +00:00
parent 1b9825f982
commit f38b40daf7
5 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1 @@
_CLC_OVERLOAD _CLC_DECL __CLC_GENTYPE __CLC_FUNCTION(__CLC_GENTYPE a, __CLC_GENTYPE b);

View File

@ -1 +1,7 @@
#define native_divide(x, y) ((x) / (y))
#define __CLC_BODY <clc/math/binary_decl_tt.inc>
#define __CLC_FUNCTION native_divide
#include <clc/math/gentype.inc>
#undef __CLC_BODY
#undef __CLC_FUNCTION

View File

@ -120,6 +120,7 @@ math/logb.cl
math/mad.cl
math/modf.cl
math/native_cos.cl
math/native_divide.cl
math/native_exp.cl
math/native_exp10.cl
math/native_exp2.cl

View File

@ -0,0 +1,5 @@
#include <clc/clc.h>
#define __CLC_BODY <native_divide.inc>
#define __FLOAT_ONLY
#include <clc/math/gentype.inc>

View File

@ -0,0 +1,3 @@
_CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE native_divide(__CLC_GENTYPE x, __CLC_GENTYPE y) {
return x / y;
}