repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git]
/
test
/
C++Frontend
/
2006-09-08-powi.cpp
blob
75cbfda7cbc9071ea406278d5d9666f85704e982
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
}