blob: ceebc18104cde3eacfba6403539dd53684b652af [file] [log] [blame]
Chris Lattnerc0c9c5e2006-09-09 06:02:16 +00001// RUN: llvm-g++ -O3 -S -o - %s
2
3#include <cmath>
4
5double foo(double X, int Y) {
6 return std::pow(X, Y);
7}