[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / libclc / generic / lib / relational / isnan.cl
blob3d3104783b7e54d33992679391d8366fe6df99e1
1 #include <clc/clc.h>
2 #include "relational.h"
4 _CLC_DEFINE_RELATIONAL_UNARY(int, isnan, __builtin_isnan, float)
6 #ifdef cl_khr_fp64
8 #pragma OPENCL EXTENSION cl_khr_fp64 : enable
10 // The scalar version of isnan(double) returns an int, but the vector versions
11 // return long.
12 _CLC_DEF _CLC_OVERLOAD int isnan(double x) {
13 return __builtin_isnan(x);
16 _CLC_DEFINE_RELATIONAL_UNARY_VEC_ALL(long, isnan, double)
18 #endif
20 #ifdef cl_khr_fp16
22 #pragma OPENCL EXTENSION cl_khr_fp16 : enable
24 // The scalar version of isnan(half) returns an int, but the vector versions
25 // return short.
26 _CLC_DEF _CLC_OVERLOAD int isnan(half x) {
27 return __builtin_isnan(x);
30 _CLC_DEFINE_RELATIONAL_UNARY_VEC_ALL(short, isnan, half)
32 #endif