This is the mail archive of the gcc-bugs@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]
Other format: [Raw text]

[Bug tree-optimization/21048] [4.1 Regression] use of poisoned ggc memory causes cpu2000 build failures


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-15 20:12 -------
Here is a reduced testcase with the additional option of --param ggc-min-expand=0 which forces 
collection all the time:
      subroutine foo( nx,j,dble)
      implicit none
      integer i,j,nx
      real*8 x,dble(nx)
      real u(5,60,60)
      do i = 2, nx-1
        x = dble(i) / (nx)
	u(2,i,j) = x
      end do
      return
      end


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21048


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