1#include <clc/clc.h>
2#include "../clcmacro.h"
3
4// Map the llvm intrinsic to an OpenCL function.
5#define __CLC_FUNCTION __clc_floor
6#define __CLC_INTRINSIC "llvm.floor"
7#include "math/unary_intrin.inc"
8
9#undef __CLC_FUNCTION
10#define __CLC_FUNCTION floor
11#include "unary_builtin.inc"
12