mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-18 22:26:16 +00:00
Move mix from math to common
It has been part of the common functions since 1.0 Signed-off-by: Aaron Watry <awatry@gmail.com> Reviewed-by: Tom Stellard <thomas.stellard@amd.com> llvm-svn: 231137
This commit is contained in:
parent
7f1e0565b3
commit
1314630ec3
@ -55,7 +55,6 @@
|
||||
#include <clc/math/log1p.h>
|
||||
#include <clc/math/log2.h>
|
||||
#include <clc/math/mad.h>
|
||||
#include <clc/math/mix.h>
|
||||
#include <clc/math/nextafter.h>
|
||||
#include <clc/math/pow.h>
|
||||
#include <clc/math/pown.h>
|
||||
@ -110,6 +109,7 @@
|
||||
/* 6.11.4 Common Functions */
|
||||
#include <clc/common/degrees.h>
|
||||
#include <clc/common/radians.h>
|
||||
#include <clc/common/mix.h>
|
||||
#include <clc/common/sign.h>
|
||||
#include <clc/common/smoothstep.h>
|
||||
#include <clc/common/step.h>
|
||||
|
2
libclc/generic/include/clc/common/mix.h
Normal file
2
libclc/generic/include/clc/common/mix.h
Normal file
@ -0,0 +1,2 @@
|
||||
#define __CLC_BODY <clc/common/mix.inc>
|
||||
#include <clc/math/gentype.inc>
|
@ -1,2 +0,0 @@
|
||||
#define __CLC_BODY <clc/math/mix.inc>
|
||||
#include <clc/math/gentype.inc>
|
@ -28,6 +28,7 @@ cl_khr_local_int32_extended_atomics/atom_or.cl
|
||||
cl_khr_local_int32_extended_atomics/atom_xor.cl
|
||||
convert.cl
|
||||
common/degrees.cl
|
||||
common/mix.cl
|
||||
common/radians.cl
|
||||
common/sign.cl
|
||||
common/smoothstep.cl
|
||||
@ -71,7 +72,6 @@ math/hypot.cl
|
||||
math/log10.cl
|
||||
math/log1p.cl
|
||||
math/mad.cl
|
||||
math/mix.cl
|
||||
math/tables.cl
|
||||
math/clc_nextafter.cl
|
||||
math/nextafter.cl
|
||||
|
Loading…
x
Reference in New Issue
Block a user