URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [testsuite/] [26_numerics/] [complex/] [pow.cc] - Rev 747
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run { xfail broken_cplxf_arg } } // PR libstdc++/10689 // Origin: Daniel.Levine@jhuaph.edu // { dg-add-options ieee } #include <complex> #include <testsuite_hooks.h> int main() { std::complex<double> z; VERIFY( pow(z, 1.0/3.0) == 0.0 ); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log