[libclc] r356015 - floor: Remove llvm isntrinsic from the header.
Jan Vesely via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 13 00:06:03 PDT 2019
Author: jvesely
Date: Wed Mar 13 00:06:03 2019
New Revision: 356015
URL: http://llvm.org/viewvc/llvm-project?rev=356015&view=rev
Log:
floor: Remove llvm isntrinsic from the header.
Reviewer: Aaron Watry
Signed-off-by: Jan Vesely <jan.vesely at rutgers.edu>
Added:
libclc/trunk/generic/lib/math/floor.cl
Modified:
libclc/trunk/generic/include/clc/math/floor.h
libclc/trunk/generic/lib/SOURCES
Modified: libclc/trunk/generic/include/clc/math/floor.h
URL: http://llvm.org/viewvc/llvm-project/libclc/trunk/generic/include/clc/math/floor.h?rev=356015&r1=356014&r2=356015&view=diff
==============================================================================
--- libclc/trunk/generic/include/clc/math/floor.h (original)
+++ libclc/trunk/generic/include/clc/math/floor.h Wed Mar 13 00:06:03 2019
@@ -1,6 +1,7 @@
-#undef floor
-#define floor __clc_floor
+#define __CLC_BODY <clc/math/unary_decl.inc>
+#define __CLC_FUNCTION floor
-#define __CLC_FUNCTION __clc_floor
-#define __CLC_INTRINSIC "llvm.floor"
-#include <clc/math/unary_intrin.inc>
+#include <clc/math/gentype.inc>
+
+#undef __CLC_BODY
+#undef __CLC_FUNCTION
Modified: libclc/trunk/generic/lib/SOURCES
URL: http://llvm.org/viewvc/llvm-project/libclc/trunk/generic/lib/SOURCES?rev=356015&r1=356014&r2=356015&view=diff
==============================================================================
--- libclc/trunk/generic/lib/SOURCES (original)
+++ libclc/trunk/generic/lib/SOURCES Wed Mar 13 00:06:03 2019
@@ -105,6 +105,7 @@ math/clc_exp10.cl
math/exp10.cl
math/fabs.cl
math/fdim.cl
+math/floor.cl
math/clc_fma.cl
math/fma.cl
math/fmax.cl
Added: libclc/trunk/generic/lib/math/floor.cl
URL: http://llvm.org/viewvc/llvm-project/libclc/trunk/generic/lib/math/floor.cl?rev=356015&view=auto
==============================================================================
--- libclc/trunk/generic/lib/math/floor.cl (added)
+++ libclc/trunk/generic/lib/math/floor.cl Wed Mar 13 00:06:03 2019
@@ -0,0 +1,11 @@
+#include <clc/clc.h>
+#include "../clcmacro.h"
+
+// Map the llvm intrinsic to an OpenCL function.
+#define __CLC_FUNCTION __clc_floor
+#define __CLC_INTRINSIC "llvm.floor"
+#include <clc/math/unary_intrin.inc>
+
+#undef __CLC_FUNCTION
+#define __CLC_FUNCTION floor
+#include "unary_builtin.inc"
More information about the cfe-commits
mailing list