blob: 75cbfda7cbc9071ea406278d5d9666f85704e982 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx -O3 -S -o - %s
2
3#include <cmath>
4
5double foo(double X, int Y) {
6 return std::pow(X, Y);
7}