Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
81fe1fbf4abd00b24e078a80cb15a2d2c1343f11
/
.
/
libclc
/
generic
/
lib
/
math
/
native_rsqrt.inc
blob: f108145015b1e421319a8da00712fc6c799919bb [
file
] [
log
] [
blame
]
_CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE native_rsqrt
(
__CLC_GENTYPE val
)
{
return
1.0f
/
native_sqrt
(
val
);
}