Remove wasteful caching. This isn't needed for correctness because any function
[llvm.git] / test / FrontendC++ / 2006-09-08-powi.cpp
blob75cbfda7cbc9071ea406278d5d9666f85704e982
1 // RUN: %llvmgxx -O3 -S -o - %s
3 #include <cmath>
5 double foo(double X, int Y) {
6 return std::pow(X, Y);