1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00

(indirect) test for the __builtin_powi builtin which we now support.

llvm-svn: 30224
This commit is contained in:
Chris Lattner 2006-09-09 06:02:16 +00:00
parent 7005757ced
commit 00b84b6eab

View File

@ -0,0 +1,7 @@
// RUN: llvm-g++ -O3 -S -o - %s
#include <cmath>
double foo(double X, int Y) {
return std::pow(X, Y);
}