1! { dg-do compile }
2! { dg-options "-fdump-tree-original" }
3!
4! PR fortran/33197
5!
6! Fortran 2008 complex trigonometric functions: tan, cosh, sinh, tanh
7!
8! Compile-time simplificiations
9!
10implicit none
11real(4), parameter :: pi  = 2*acos(0.0_4)
12real(8), parameter :: pi8 = 2*acos(0.0_8)
13real(4), parameter :: eps  = 10*epsilon(0.0_4)
14real(8), parameter :: eps8 = 10*epsilon(0.0_8)
15complex(4), parameter :: z0_0  = cmplx(0.0_4, 0.0_4, kind=4)
16complex(4), parameter :: z1_1  = cmplx(1.0_4, 1.0_4, kind=4)
17complex(4), parameter :: zp_p  = cmplx(pi,    pi,    kind=4)
18complex(8), parameter :: z80_0 = cmplx(0.0_8, 0.0_8, kind=8)
19complex(8), parameter :: z81_1 = cmplx(1.0_8, 1.0_8, kind=8)
20complex(8), parameter :: z8p_p = cmplx(pi8,   pi8,   kind=8)
21
22if (abs(tan(z0_0)  - cmplx(0.0,0.0,4)) > eps) call abort()
23if (abs(tan(z1_1)  - cmplx(0.27175257,1.0839232,4)) > eps) call abort()
24if (abs(tan(z80_0) - cmplx(0.0_8,0.0_8,8)) > eps8) call abort()
25if (abs(tan(z81_1) - cmplx(0.27175258531951174_8,1.0839233273386946_8,8)) > eps8) call abort()
26
27if (abs(cosh(z0_0)  - cmplx(1.0,0.0,4)) > eps) call abort()
28if (abs(cosh(z1_1)  - cmplx(0.83372992,0.98889768,4)) > eps) call abort()
29if (abs(cosh(z80_0) - cmplx(1.0_8,0.0_8,8)) > eps8) call abort()
30if (abs(cosh(z81_1) - cmplx(0.83373002513114913_8,0.98889770576286506_8,8)) > eps8) call abort()
31
32if (abs(sinh(z0_0)  - cmplx(0.0,0.0,4)) > eps) call abort()
33if (abs(sinh(z1_1)  - cmplx(0.63496387,1.2984575,4)) > eps) call abort()
34if (abs(sinh(z80_0) - cmplx(0.0_8,0.0_8,8)) > eps8) call abort()
35if (abs(sinh(z81_1) - cmplx(0.63496391478473613_8,1.2984575814159773_8,8)) > eps8) call abort()
36
37if (abs(tanh(z0_0)  - cmplx(0.0,0.0,4)) > eps) call abort()
38if (abs(tanh(z1_1)  - cmplx(1.0839232,0.27175257,4)) > eps) call abort()
39if (abs(tanh(z80_0) - cmplx(0.0_8,0.0_8,8)) > eps8) call abort()
40if (abs(tanh(z81_1) - cmplx(1.0839233273386946_8,0.27175258531951174_8,8)) > eps8) call abort()
41
42end
43! { dg-final { scan-tree-dump-times "abort" 0 "original" } }
44! { dg-final { cleanup-tree-dump "original" } }
45