view gcc/testsuite/gfortran.dg/malloc_free_1.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! Test for the MALLOC and FREE intrinsics
! If something is wrong with them, this test might segfault
! { dg-do run }
  integer j
  integer(kind=8) i8

  do j = 1, 10000
    i8 = malloc (10 * j)
    call free (i8)
  end do
  end