forked from OSchip/llvm-project
(indirect) test for the __builtin_powi builtin which we now support.
llvm-svn: 30224
This commit is contained in:
parent
b3c366a3bd
commit
a4b7de8669
|
@ -0,0 +1,7 @@
|
|||
// RUN: llvm-g++ -O3 -S -o - %s
|
||||
|
||||
#include <cmath>
|
||||
|
||||
double foo(double X, int Y) {
|
||||
return std::pow(X, Y);
|
||||
}
|
Loading…
Reference in New Issue