This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

More g77 tests (1 of 2)


Jeff, could you please install this as:

  egcs/gcc/testsuite/g77-f.torture/execute/980628-4.f

        tq vm, (burley)


* g77 0.5.23 and previous had bugs involving too little space
* allocated for EQUIVALENCE and COMMON areas needing initial
* padding to meet alignment requirements of the system,
* including when initial values are provided (e.g. DATA).

      program test
      implicit none

      real r
      double precision d
      common /cmn/ r, d

      if (r .ne. 1.) call abort
      if (d .ne. 10.) call abort

      end

      block data init
      implicit none

      real r
      double precision d
      common /cmn/ r, d

      data r/1./, d/10./

      end


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]