OSDN Git Service

2008-03-04 Uros Bizjak <ubizjak@gmail.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / f2c_5.f90
1 ! { dg-do run }
2 ! { dg-additional-sources f2c_5.c }
3 ! { dg-options "-fno-f2c -w" }
4 ! Check calling conventions without -ff2c
5 program f2c_5  
6   call f2c_5a()
7 end
8
9 real function f2c_5b(x)
10   double precision x
11   f2c_5b = x
12 end