[Bug fortran/20335] ICE with attached Fortran source

2005-03-06 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

   Target Milestone|--- |4.0.0


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


[Bug fortran/20335] ICE with attached Fortran source

2005-03-06 Thread phillip dot m dot jordan at gmail dot com

--- Additional Comments From phillip dot m dot jordan at gmail dot com  
2005-03-06 18:33 ---
Just tested with the 20050305 snapshot, and it works perfectly.

Thanks!

~phil

-- 
   What|Removed |Added

 Status|WAITING |RESOLVED
 Resolution||FIXED


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


[Bug fortran/20335] ICE with attached Fortran source

2005-03-06 Thread sgk at troutmask dot apl dot washington dot edu

--- Additional Comments From sgk at troutmask dot apl dot washington dot 
edu  2005-03-06 17:00 ---
Subject: Re:  ICE with attached Fortran source

On Sun, Mar 06, 2005 at 04:37:26PM -, tobi at gcc dot gnu dot org wrote:
> 
> --- Additional Comments From tobi at gcc dot gnu dot org  2005-03-06 
> 16:37 ---
> Does this happen with an up-to-date gfortran? I've just fixed the UBOUND
> intrinsic a few days ago. I'm also adding Steve to CC because he confirmed the
> bug, and I'm sure he has an up-to-date compiler lying around.
> 

It is indeed fixed, here.  I must have tested the code
with an older version of gfortran.



-- 


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


[Bug fortran/20335] ICE with attached Fortran source

2005-03-06 Thread phillip dot m dot jordan at gmail dot com

--- Additional Comments From phillip dot m dot jordan at gmail dot com  
2005-03-06 16:45 ---
I'm downloading gfortran-4.0-20050305 right now, will report back when it's 
downloaded and built. (will take a few hours, sorry)

Thanks for looking at the problem.

~phil

-- 


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


[Bug fortran/20335] ICE with attached Fortran source

2005-03-06 Thread tobi at gcc dot gnu dot org

--- Additional Comments From tobi at gcc dot gnu dot org  2005-03-06 16:39 
---
Oh, forgot to say: I'm not seeing any problems with an up-to-date compiler.

-- 


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


[Bug fortran/20335] ICE with attached Fortran source

2005-03-06 Thread tobi at gcc dot gnu dot org

--- Additional Comments From tobi at gcc dot gnu dot org  2005-03-06 16:37 
---
Does this happen with an up-to-date gfortran? I've just fixed the UBOUND
intrinsic a few days ago. I'm also adding Steve to CC because he confirmed the
bug, and I'm sure he has an up-to-date compiler lying around.

-- 
   What|Removed |Added

 CC||tobi at gcc dot gnu dot org,
   ||kargl at gcc dot gnu dot org
 Status|NEW |WAITING


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


[Bug fortran/20335] ICE with attached Fortran source

2005-03-05 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

   Severity|critical|normal


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


[Bug fortran/20335] ICE with attached Fortran source

2005-03-05 Thread kargl at gcc dot gnu dot org

--- Additional Comments From kargl at gcc dot gnu dot org  2005-03-05 18:57 
---
Here's a rduced version.  This caused by UBOUND call
on the allocated array.

module types
  type lineListType
type(vertexType), dimension(:), pointer :: vertex
  end type
end module types 

module flow
  use types
  contains
subroutine TraceCreate
  use types
  type(lineListType) :: line
  integer :: max_line
  allocate(line%vertex(0:15))
  max_line = ubound(line%vertex, 1)
end subroutine
end module



-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|-00-00 00:00:00 |2005-03-05 18:57:25
   date||


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


[Bug fortran/20335] ICE with attached Fortran source

2005-03-05 Thread phillip dot m dot jordan at gmail dot com

--- Additional Comments From phillip dot m dot jordan at gmail dot com  
2005-03-05 15:32 ---
Correction:
It probably shouldn't ICE even if it's *not* valid, though.

~phil

-- 
   What|Removed |Added

  Known to fail||4.0.0


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


[Bug fortran/20335] ICE with attached Fortran source

2005-03-05 Thread phillip dot m dot jordan at gmail dot com

--- Additional Comments From phillip dot m dot jordan at gmail dot com  
2005-03-05 15:29 ---
Created an attachment (id=8337)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=8337&action=view)
the source code causing the Internal Compiler Error

After extraction, compile with
gfortran -c constantsModule.f90  typesModule.f90 flow_trace.f90


-- 


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