~40% faster vector shl <4 x i32> on SSE 4.1 Larger improvements for smaller types...
[oota-llvm.git] / test / FrontendC++ / 2006-09-08-powi.cpp
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 }