Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
d22fe2b51f553f7eca200cd22b9e2247f9aea2ff
/
.
/
test
/
C++Frontend
/
2006-09-08-powi.cpp
blob: 75cbfda7cbc9071ea406278d5d9666f85704e982 [
file
] [
log
] [
blame
]
// RUN: %llvmgxx -O3 -S -o - %s
#include
<cmath>
double
foo
(
double
X
,
int
Y
)
{
return
std
::
pow
(
X
,
Y
);
}