Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
17cdf7b0f44eba413deafee16aa19a246e5488af
/
.
/
test
/
C++Frontend
/
2006-09-08-powi.cpp
blob: 75cbfda7cbc9071ea406278d5d9666f85704e982 [
file
] [
log
] [
blame
]
Bill Wendling
17cdf7b
2006-09-22 07:09:01 +0000
[
diff
] [
blame^
]
1
// RUN: %llvmgxx -O3 -S -o - %s
Chris Lattner
c0c9c5e
2006-09-09 06:02:16 +0000
[
diff
] [
blame
]
2
3
#include
<cmath>
4
5
double
foo
(
double
X
,
int
Y
)
{
6
return
std
::
pow
(
X
,
Y
);
7
}