ceil: Remove llvm intrinsic from the header.

Reviewer: Aaron Watry
Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu>
llvm-svn: 356013
GitOrigin-RevId: 54eb4d3a6d863fbe1ca92e4e741ed1c842a2cfa0
diff --git a/generic/include/clc/math/ceil.h b/generic/include/clc/math/ceil.h
index 5b40abf..b444c48 100644
--- a/generic/include/clc/math/ceil.h
+++ b/generic/include/clc/math/ceil.h
@@ -1,6 +1,7 @@
-#undef ceil
-#define ceil __clc_ceil
+#define __CLC_BODY <clc/math/unary_decl.inc>
+#define __CLC_FUNCTION ceil
 
-#define __CLC_FUNCTION __clc_ceil
-#define __CLC_INTRINSIC "llvm.ceil"
-#include <clc/math/unary_intrin.inc>
+#include <clc/math/gentype.inc>
+
+#undef __CLC_BODY
+#undef __CLC_FUNCTION
diff --git a/generic/lib/SOURCES b/generic/lib/SOURCES
index 788aee6..03a0479 100644
--- a/generic/lib/SOURCES
+++ b/generic/lib/SOURCES
@@ -89,6 +89,7 @@
 math/atanh.cl
 math/atanpi.cl
 math/cbrt.cl
+math/ceil.cl
 math/copysign.cl
 math/cos.cl
 math/cosh.cl
diff --git a/generic/lib/math/ceil.cl b/generic/lib/math/ceil.cl
new file mode 100644
index 0000000..3402f6f
--- /dev/null
+++ b/generic/lib/math/ceil.cl
@@ -0,0 +1,11 @@
+#include <clc/clc.h>
+#include "../clcmacro.h"
+
+// Map the llvm intrinsic to an OpenCL function.
+#define __CLC_FUNCTION __clc_ceil
+#define __CLC_INTRINSIC "llvm.ceil"
+#include <clc/math/unary_intrin.inc>
+
+#undef __CLC_FUNCTION
+#define __CLC_FUNCTION ceil
+#include "unary_builtin.inc"