mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-15 17:55:32 +08:00
ecddf99e14
* testsuite/26_numerics/complex/13450.cc: Fix XFAIL selector. * testsuite/26_numerics/complex/complex_value.cc: Ditto. * testsuite/26_numerics/complex/pow.cc: Ditto. From-SVN: r94904
17 lines
295 B
C++
17 lines
295 B
C++
// { dg-do run { xfail broken_cplxf_arg } }
|
|
// PR libstdc++/10689
|
|
// Origin: Daniel.Levine@jhuaph.edu
|
|
// { dg-options "-mieee" { target alpha*-*-* } }
|
|
|
|
#include <complex>
|
|
#include <testsuite_hooks.h>
|
|
|
|
int main()
|
|
{
|
|
std::complex<double> z;
|
|
|
|
VERIFY( pow(z, 1.0/3.0) == 0.0 );
|
|
|
|
return 0;
|
|
}
|