Sign in
android
/
platform
/
external
/
llvm
/
e264f62ca09a8f65c87a46d562a4d0f9ec5d457e
/
.
/
test
/
FrontendC++
/
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
);
}