Files
clang-p2996/libcxx/test/std/numerics/complex.number/cmplx.over/pow.pass.cpp
David Tenty f642436cc2 [libc++][AIX] Use C++ overloads from libc++'s math.h
AIX's system header provides these C++ overloads for compatibility with
older XL C++ implementations, but they can be disabled by defining
__LIBC_NO_CPP_MATH_OVERLOADS__ since AIX 7.2 TL 5 SP 3.

Since D109078 landed clang will define this macro when using libc++ on
AIX and we already run the lit tests with it too. This change will
enable the overloads in libc++'s math.h and we'll continue to require
the compiler to define the macro going forward.

Reviewed By: ldionne, jsji, EricWF

Differential Revision: https://reviews.llvm.org/D102172

co-authored-by: Jason Liu <jasonliu.development@gmail.com>
2022-03-01 15:53:41 -05:00

107 lines
2.9 KiB
C++

//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <complex>
// template<Arithmetic T, Arithmetic U>
// complex<promote<T, U>::type>
// pow(const T& x, const complex<U>& y);
// template<Arithmetic T, Arithmetic U>
// complex<promote<T, U>::type>
// pow(const complex<T>& x, const U& y);
// template<Arithmetic T, Arithmetic U>
// complex<promote<T, U>::type>
// pow(const complex<T>& x, const complex<U>& y);
#include <complex>
#include <type_traits>
#include <cassert>
#include "test_macros.h"
#include "../cases.h"
template <class T>
double
promote(T, typename std::enable_if<std::is_integral<T>::value>::type* = 0);
float promote(float);
double promote(double);
long double promote(long double);
template <class T, class U>
void
test(T x, const std::complex<U>& y)
{
typedef decltype(promote(x)+promote(real(y))) V;
static_assert((std::is_same<decltype(std::pow(x, y)), std::complex<V> >::value), "");
assert(std::pow(x, y) == pow(std::complex<V>(x, 0), std::complex<V>(y)));
}
template <class T, class U>
void
test(const std::complex<T>& x, U y)
{
typedef decltype(promote(real(x))+promote(y)) V;
static_assert((std::is_same<decltype(std::pow(x, y)), std::complex<V> >::value), "");
assert(std::pow(x, y) == pow(std::complex<V>(x), std::complex<V>(y, 0)));
}
template <class T, class U>
void
test(const std::complex<T>& x, const std::complex<U>& y)
{
typedef decltype(promote(real(x))+promote(real(y))) V;
static_assert((std::is_same<decltype(std::pow(x, y)), std::complex<V> >::value), "");
assert(std::pow(x, y) == pow(std::complex<V>(x), std::complex<V>(y)));
}
template <class T, class U>
void
test(typename std::enable_if<std::is_integral<T>::value>::type* = 0, typename std::enable_if<!std::is_integral<U>::value>::type* = 0)
{
test(T(3), std::complex<U>(4, 5));
test(std::complex<U>(3, 4), T(5));
}
template <class T, class U>
void
test(typename std::enable_if<!std::is_integral<T>::value>::type* = 0, typename std::enable_if<!std::is_integral<U>::value>::type* = 0)
{
test(T(3), std::complex<U>(4, 5));
test(std::complex<T>(3, 4), U(5));
test(std::complex<T>(3, 4), std::complex<U>(5, 6));
}
int main(int, char**)
{
test<int, float>();
test<int, double>();
test<int, long double>();
test<unsigned, float>();
test<unsigned, double>();
test<unsigned, long double>();
test<long long, float>();
test<long long, double>();
test<long long, long double>();
test<float, double>();
test<float, long double>();
test<double, float>();
test<double, long double>();
test<long double, float>();
test<long double, double>();
return 0;
}