mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-28 16:11:29 +00:00
native_cos: Switch implementation to llvm intrinsic
Reviewer: Jeroen Ketema Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu> llvm-svn: 317938
This commit is contained in:
parent
edbde58de0
commit
0750b7df51
@ -1 +1,9 @@
|
||||
#define native_cos cos
|
||||
#define __CLC_BODY <clc/math/unary_decl.inc>
|
||||
#define __CLC_FUNCTION native_cos
|
||||
#define __FLOAT_ONLY
|
||||
|
||||
#include <clc/math/gentype.inc>
|
||||
|
||||
#undef __FLOAT_ONLY
|
||||
#undef __CLC_BODY
|
||||
#undef __CLC_FUNCTION
|
||||
|
@ -119,6 +119,7 @@ math/log2.cl
|
||||
math/logb.cl
|
||||
math/mad.cl
|
||||
math/modf.cl
|
||||
math/native_cos.cl
|
||||
math/native_exp.cl
|
||||
math/native_exp2.cl
|
||||
math/native_log.cl
|
||||
|
7
libclc/generic/lib/math/native_cos.cl
Normal file
7
libclc/generic/lib/math/native_cos.cl
Normal file
@ -0,0 +1,7 @@
|
||||
#include <clc/clc.h>
|
||||
|
||||
#define __CLC_NATIVE_INTRINSIC cos
|
||||
|
||||
#define __CLC_BODY <native_unary_intrinsic.inc>
|
||||
#define __FLOAT_ONLY
|
||||
#include <clc/math/gentype.inc>
|
Loading…
Reference in New Issue
Block a user