Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
afa08b51a65fd3e945cb752281f7ad5f02c4fa29
/
.
/
test
/
FrontendC++
/
2006-09-08-powi.cpp
blob: 75cbfda7cbc9071ea406278d5d9666f85704e982 [
file
] [
log
] [
blame
]
Dan Gohman
f17a25c
2007-07-18 16:29:46 +0000
[
diff
] [
blame
]
1
// RUN: %llvmgxx -O3 -S -o - %s
2
3
#include
<cmath>
4
5
double
foo
(
double
X
,
int
Y
)
{
6
return
std
::
pow
(
X
,
Y
);
7
}