[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / libclc / r600 / lib / math / native_rsqrt.cl
blobedf473e8409c6d20ea382437ff58c513221db063
1 #include <clc/clc.h>
3 #include "../../../generic/lib/clcmacro.h"
5 _CLC_OVERLOAD _CLC_DEF float native_rsqrt(float x)
7 return __builtin_r600_recipsqrt_ieeef(x);
10 _CLC_UNARY_VECTORIZE(_CLC_OVERLOAD _CLC_DEF, float, native_rsqrt, float);