aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend/2006-09-08-powi.cpp
blob: ceebc18104cde3eacfba6403539dd53684b652af (plain)
1
2
3
4
5
6
7
// RUN: llvm-g++ -O3 -S -o - %s

#include <cmath>

double foo(double X, int Y) {
  return std::pow(X, Y);
}