public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/35251]  New: internal compiler error: verify_stmts failed
@ 2008-02-19  6:39 kendrick dot killian at colostate dot edu
  2008-02-19  6:43 ` [Bug middle-end/35251] " pinskia at gcc dot gnu dot org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: kendrick dot killian at colostate dot edu @ 2008-02-19  6:39 UTC (permalink / raw)
  To: gcc-bugs

during compile, received the following output
bug.f: In function 'master.0.mnthweek':
bug.f:82: error: invalid operand to binary operator
__result_master.0.mnthweekD.911

bug.f:82: internal compiler error: verify_stmts failed
Please submit a full bug report,
with preprocessed source if appropriate.


Gfortran version
Using built-in specs.
Target: powerpc-apple-darwin8
Configured with: ../gcc/configure --prefix=/usr/local/gfortran
--enable-languages=c,fortran --with-gmp=/tmp/gfortran-20060713/gfortran_libs
--enable-bootstrap --build=powerpc-apple-darwin8 --host=powerpc-apple-darwin8
--target=powerpc-apple-darwin8 : (reconfigured) ../gcc/configure
--prefix=/usr/local/gfortran --enable-languages=c,fortran
--with-gmp=/tmp/gfortran-20060713/gfortran_libs --enable-bootstrap
--build=powerpc-apple-darwin8 --host=powerpc-apple-darwin8
--target=powerpc-apple-darwin8 --disable-multilib
Thread model: posix
gcc version 4.2.0 20060713 (experimental)

The same code compiles with
gcc version 4.1.0 20060304 (Red Hat 4.1.0-3)



Compile command:
gfortran -fno-backslash -implicit-none -O3 -m32 -c bug.f

code:
c===================================================================
      integer function mnthweek(month, event)
        integer month
        character*(*) event
c       convert monthly values to a week based on the event
c  Events 'GRAZ', 'TREM', 'FIRE', 'HARV' and 'THRV' occur after plant 

        integer MONTHS
        parameter (MONTHS = 12)

        integer wtomonth, wkprmn, winmonth, m


        integer frstwk(MONTHS), lastwk(MONTHS)
        data frstwk /1,  5,  9, 14, 18, 22, 27, 31, 35, 40, 44, 48/
        data lastwk /4,  8, 13, 17, 21, 26, 30, 34, 39, 43, 47, 52/


c       Make sure that we are asking about a valid month
        m = mod(month-1,12)+1

c       by default assume the event will occur on the first week

c       The special case of every week in the month
        mnthweek = frstwk(m)
        if(event .eq. 'IRRI' .or. event .eq. 'GRAZ') then
          mnthweek = (lastwk(m)-frstwk(m))*1000 + mnthweek


c       the following events occur after growth in Century 4. Place these
c       events in the last week

c       removal and harvest
        else if (event .eq. 'TREM' .or. event .eq. 'FIRE' .or.
     &      event .eq. 'HARV' .or.  event .eq. 'THRV') then
          mnthweek = lastwk(m)
        endif

        write(*,*) mnthweek,' = mnthweek(',month, event,')'
      return

c     convert the week number to month
      entry wtomonth(month)
         wtomonth = mod(int(mod(month+43,52)*3./13.)+2,12)+1
      return
      end
c===================================================================


NOTE:
code compiles if the write
        write(*,*) mnthweek,' = mnthweek(',month, event,')'
or the entry block is removed.

I did not try a newer build.


-- 
           Summary: internal compiler error: verify_stmts failed
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: kendrick dot killian at colostate dot edu


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


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug middle-end/35251] internal compiler error: verify_stmts failed
  2008-02-19  6:39 [Bug fortran/35251] New: internal compiler error: verify_stmts failed kendrick dot killian at colostate dot edu
@ 2008-02-19  6:43 ` pinskia at gcc dot gnu dot org
  2008-02-20 20:41 ` jvdelisle at gcc dot gnu dot org
  2008-12-29  6:53 ` pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-02-19  6:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2008-02-19 06:42 -------
> gcc version 4.2.0 20060713 (experimental)

That is an old version of 4.2.0, can you try a new version of gcc 4.2.x.


-- 


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


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug middle-end/35251] internal compiler error: verify_stmts failed
  2008-02-19  6:39 [Bug fortran/35251] New: internal compiler error: verify_stmts failed kendrick dot killian at colostate dot edu
  2008-02-19  6:43 ` [Bug middle-end/35251] " pinskia at gcc dot gnu dot org
@ 2008-02-20 20:41 ` jvdelisle at gcc dot gnu dot org
  2008-12-29  6:53 ` pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2008-02-20 20:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from jvdelisle at gcc dot gnu dot org  2008-02-20 20:40 -------
Works OK on 4.3.0


-- 


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


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug middle-end/35251] internal compiler error: verify_stmts failed
  2008-02-19  6:39 [Bug fortran/35251] New: internal compiler error: verify_stmts failed kendrick dot killian at colostate dot edu
  2008-02-19  6:43 ` [Bug middle-end/35251] " pinskia at gcc dot gnu dot org
  2008-02-20 20:41 ` jvdelisle at gcc dot gnu dot org
@ 2008-12-29  6:53 ` pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-12-29  6:53 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2008-12-29 06:51 -------
Fixed in 4.3.0 at least.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.3.0


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


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-12-29  6:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-19  6:39 [Bug fortran/35251] New: internal compiler error: verify_stmts failed kendrick dot killian at colostate dot edu
2008-02-19  6:43 ` [Bug middle-end/35251] " pinskia at gcc dot gnu dot org
2008-02-20 20:41 ` jvdelisle at gcc dot gnu dot org
2008-12-29  6:53 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).