mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-28 16:11:29 +00:00
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:
parent
1b9825f982
commit
f38b40daf7
1
libclc/generic/include/clc/math/binary_decl_tt.inc
Normal file
1
libclc/generic/include/clc/math/binary_decl_tt.inc
Normal file
@ -0,0 +1 @@
|
||||
_CLC_OVERLOAD _CLC_DECL __CLC_GENTYPE __CLC_FUNCTION(__CLC_GENTYPE a, __CLC_GENTYPE b);
|
@ -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
|
||||
|
@ -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
|
||||
|
5
libclc/generic/lib/math/native_divide.cl
Normal file
5
libclc/generic/lib/math/native_divide.cl
Normal file
@ -0,0 +1,5 @@
|
||||
#include <clc/clc.h>
|
||||
|
||||
#define __CLC_BODY <native_divide.inc>
|
||||
#define __FLOAT_ONLY
|
||||
#include <clc/math/gentype.inc>
|
3
libclc/generic/lib/math/native_divide.inc
Normal file
3
libclc/generic/lib/math/native_divide.inc
Normal file
@ -0,0 +1,3 @@
|
||||
_CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE native_divide(__CLC_GENTYPE x, __CLC_GENTYPE y) {
|
||||
return x / y;
|
||||
}
|
Loading…
Reference in New Issue
Block a user