Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
c52435b4a254af96128c19e473071ec30cfb51f2
/
.
/
libclc
/
generic
/
lib
/
math
/
hypot.inc
blob: 3f529c881a4af063dda776a91e87a78bc575fda9 [
file
] [
log
] [
blame
]
Peter Collingbourne
de7227e
2012-05-29 13:35:28 +0000
[
diff
] [
blame
]
1
_CLC_OVERLOAD _CLC_DEF GENTYPE hypot
(
GENTYPE x
,
GENTYPE y
)
{
2
return
sqrt
(
x
*
x
+
y
*
y
);
3
}