Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gfortran.dg / f2c_1.f90
blob9f45d05bf22f75dd0e7ecc7a3b6cb763ec7cbc96
1 ! Make sure the f2c calling conventions work
2 ! { dg-do run }
3 ! { dg-options "-ff2c" }
5 function f(x)
6 f = x
7 end function f
9 complex function c(a,b)
10 c = cmplx (a,b)
11 end function c
13 double complex function d(e,f)
14 double precision e, f
15 d = cmplx (e, f, kind(d))
16 end function d
18 subroutine test_with_interface()
19 interface
20 real function f(x)
21 real::x
22 end function f
23 end interface
25 interface
26 complex function c(a,b)
27 real::a,b
28 end function c
29 end interface
31 interface
32 double complex function d(e,f)
33 double precision::e,f
34 end function d
35 end interface
37 double precision z, w
39 x = 8.625
40 if (x /= f(x)) call abort ()
41 y = f(x)
42 if (x /= y) call abort ()
44 a = 1.
45 b = -1.
46 if (c(a,b) /= cmplx(a,b)) call abort ()
48 z = 1.
49 w = -1.
50 if (d(z,w) /= cmplx(z,w, kind(z))) call abort ()
51 end subroutine test_with_interface
53 external f, c, d
54 real f
55 complex c
56 double complex d
57 double precision z, w
59 x = 8.625
60 if (x /= f(x)) call abort ()
61 y = f(x)
62 if (x /= y) call abort ()
64 a = 1.
65 b = -1.
66 if (c(a,b) /= cmplx(a,b)) call abort ()
68 z = 1.
69 w = -1.
70 if (d(z,w) /= cmplx(z,w, kind(z))) call abort ()
72 call test_with_interface ()
73 end