Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
c52435b4a254af96128c19e473071ec30cfb51f2
/
.
/
libclc
/
generic
/
lib
/
math
/
hypot.inc
blob: 3f529c881a4af063dda776a91e87a78bc575fda9 [
file
] [
log
] [
blame
]
_CLC_OVERLOAD _CLC_DEF GENTYPE hypot
(
GENTYPE x
,
GENTYPE y
)
{
return
sqrt
(
x
*
x
+
y
*
y
);
}