52 lines · c
1// RUN: %clang_cc1 -verify -std=c2y -Wall %s2 3/* WG14 N3460: Clang 124 * Complex operators5 *6 * This moves some Annex G requirements into the main body of the standard.7 */8 9// CMPLX(0.0, inf) * 2.0, the result should be CMPLX(0.0, inf), not CMPLX(nan, inf)10static_assert(__builtin_complex(0.0, __builtin_inf()) * 2.0 ==11 __builtin_complex(0.0, __builtin_inf()));12 13// CMPLX(0.0, 1.0) * -0.0 is CMPLX(-0.0, -0.0), not CMPLX(-0.0, +0.0)14static_assert(__builtin_complex(0.0, 1.0) * -0.0 ==15 __builtin_complex(-0.0, -0.0));16 17// Testing for -0.0 is a pain because -0.0 == +0.0, so forcefully generate a18// diagnostic and check the note.19static_assert(__builtin_complex(0.0, 1.0) * -0.0 == 1); /* expected-error {{static assertion failed due to requirement '__builtin_complex(0., 1.) * -0. == 1'}} \20 expected-note {{expression evaluates to '(-0 + -0i) == 1'}}21 */22 23// CMPLX(0.0, inf) / 2.0, the result should be CMPLX(0.0, inf),24// not CMPLX(nan, inf)25static_assert(__builtin_complex(0.0, __builtin_inf()) / 2.0 ==26 __builtin_complex(0.0, __builtin_inf()));27 28// CMPLX(2.0, 3.0) * 2.0, the result should be CMPLX(4.0, 6.0)29static_assert(__builtin_complex(2.0, 3.0) * 2.0 ==30 __builtin_complex(4.0, 6.0));31 32// CMPLX(2.0, 4.0) / 2.0, the result should be CMPLX(1.0, 2.0)33static_assert(__builtin_complex(2.0, 4.0) / 2.0 ==34 __builtin_complex(1.0, 2.0));35 36// CMPLX(2.0, 3.0) * CMPLX(4.0, 5.0), the result should be37// CMPLX(8.0 - 15.0, 12.0 + 10.0)38static_assert(__builtin_complex(2.0, 3.0) * __builtin_complex(4.0, 5.0) ==39 __builtin_complex(-7.0, 22.0));40 41// CMPLX(2.0, 3.0) / CMPLX(4.0, 5.0), the result should be42// CMPLX((8.0 + 15.0)/(4.0^2 + 5.0^2), (12.0 - 10.0)/(4.0^2 + 5.0^2))43static_assert(__builtin_complex(2.0, 3.0) / __builtin_complex(4.0, 5.0) ==44 __builtin_complex(23.0 / 41.0, 2.0 / 41.0));45 46 47// 2.0 / CMPLX(2.0, 4.0), the result should be48// CMPLX(4.0 /(2.0^2 + 4.0^2), -8.0/(2.0^2 + 4.0^2))49static_assert(2.0 / __builtin_complex(2.0, 4.0) ==50 __builtin_complex(4.0 / 20.0, -8.0 / 20.0));51 52