public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/15978] New: ICE with implicit none (invalid code)
@ 2004-06-13 18:11 pinskia at gcc dot gnu dot org
  2004-06-19  6:23 ` [Bug fortran/15978] " pinskia at gcc dot gnu dot org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-06-13 18:11 UTC (permalink / raw)
  To: gcc-bugs

subroutine test

      implicit none
      integer aa
      common/rommel/aaa

      end subroutine test

-- 
           Summary: ICE with implicit none (invalid code)
           Product: gcc
           Version: 3.5.0
            Status: UNCONFIRMED
          Keywords: ice-on-invalid-code
          Severity: normal
          Priority: P2
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pinskia at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org
OtherBugsDependingO 15973
             nThis:


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


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

* [Bug fortran/15978] ICE with implicit none (invalid code)
  2004-06-13 18:11 [Bug fortran/15978] New: ICE with implicit none (invalid code) pinskia at gcc dot gnu dot org
@ 2004-06-19  6:23 ` pinskia at gcc dot gnu dot org
  2004-06-22 14:00 ` tobi at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-06-19  6:23 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-06-19 06:23 -------
Confirmed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-06-19 06:23:16
               date|                            |


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


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

* [Bug fortran/15978] ICE with implicit none (invalid code)
  2004-06-13 18:11 [Bug fortran/15978] New: ICE with implicit none (invalid code) pinskia at gcc dot gnu dot org
  2004-06-19  6:23 ` [Bug fortran/15978] " pinskia at gcc dot gnu dot org
@ 2004-06-22 14:00 ` tobi at gcc dot gnu dot org
  2004-06-22 14:01 ` tobi at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: tobi at gcc dot gnu dot org @ 2004-06-22 14:00 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tobi at gcc dot gnu dot org  2004-06-22 14:00 -------
*** Bug 15973 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|15973                       |
              nThis|                            |
                 CC|                            |Mart dot Rentmeester at nn-
                   |                            |online dot org


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


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

* [Bug fortran/15978] ICE with implicit none (invalid code)
  2004-06-13 18:11 [Bug fortran/15978] New: ICE with implicit none (invalid code) pinskia at gcc dot gnu dot org
  2004-06-19  6:23 ` [Bug fortran/15978] " pinskia at gcc dot gnu dot org
  2004-06-22 14:00 ` tobi at gcc dot gnu dot org
@ 2004-06-22 14:01 ` tobi at gcc dot gnu dot org
  2004-07-09 14:54 ` cvs-commit at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: tobi at gcc dot gnu dot org @ 2004-06-22 14:01 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tobi at gcc dot gnu dot org  2004-06-22 14:01 -------
This is another one that has to do with our weaknesses in symbol handling.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
  BugsThisDependsOn|                            |15481


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


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

* [Bug fortran/15978] ICE with implicit none (invalid code)
  2004-06-13 18:11 [Bug fortran/15978] New: ICE with implicit none (invalid code) pinskia at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2004-06-22 14:01 ` tobi at gcc dot gnu dot org
@ 2004-07-09 14:54 ` cvs-commit at gcc dot gnu dot org
  2004-07-09 14:55 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-07-09 14:54 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-07-09 14:53 -------
Subject: Bug 15978

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	tobi@gcc.gnu.org	2004-07-09 14:53:45

Modified files:
	gcc/fortran    : module.c primary.c resolve.c trans-decl.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gfortran.fortran-torture/compile: implicit_2.f90 

Log message:
	fortran/
	2004-07-09  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
	
	PR fortran/15481
	PR fortran/13372
	PR fortran/13575
	PR fortran/15978
	* module.c (write_symbol, write_symtree): Remove workaround.
	* primary.c (match_actual_arglist): Enhance comment.
	(gfc_match_rvalue): Handle function call with first argument
	a keyword argument correctly.
	* resolve.c (resolve_symbol): Change call to
	gfc_set_default_type to issue error if no implicit type
	can be found.
	* trans-decl.c (gfc_create_module_variable): Remove workaround.
	
	testsuite/
	PR fortran/15481
	PR fortran/13372
	PR fortran/13575
	PR fortran/15978
	* gfortran.fortran-torture/compile/implicit_2.f90: New test.
	
	Also fixed David Billinghursts ChangeLog entry to use GMT

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/module.c.diff?cvsroot=gcc&r1=1.8&r2=1.9
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/primary.c.diff?cvsroot=gcc&r1=1.6&r2=1.7
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/resolve.c.diff?cvsroot=gcc&r1=1.8&r2=1.9
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/trans-decl.c.diff?cvsroot=gcc&r1=1.18&r2=1.19
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.3964&r2=1.3965
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.fortran-torture/compile/implicit_2.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


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


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

* [Bug fortran/15978] ICE with implicit none (invalid code)
  2004-06-13 18:11 [Bug fortran/15978] New: ICE with implicit none (invalid code) pinskia at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2004-07-09 14:54 ` cvs-commit at gcc dot gnu dot org
@ 2004-07-09 14:55 ` cvs-commit at gcc dot gnu dot org
  2004-07-09 14:56 ` tobi at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-07-09 14:55 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-07-09 14:54 -------
Subject: Bug 15978

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	tobi@gcc.gnu.org	2004-07-09 14:54:44

Modified files:
	gcc/fortran    : ChangeLog 

Log message:
	fortran/
	2004-07-09  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
	
	PR fortran/15481
	PR fortran/13372
	PR fortran/13575
	PR fortran/15978
	* module.c (write_symbol, write_symtree): Remove workaround.
	* primary.c (match_actual_arglist): Enhance comment.
	(gfc_match_rvalue): Handle function call with first argument
	a keyword argument correctly.
	* resolve.c (resolve_symbol): Change call to
	gfc_set_default_type to issue error if no implicit type
	can be found.
	* trans-decl.c (gfc_create_module_variable): Remove workaround.
	
	Add missing ChangeLog

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/ChangeLog.diff?cvsroot=gcc&r1=1.103&r2=1.104



-- 


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


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

* [Bug fortran/15978] ICE with implicit none (invalid code)
  2004-06-13 18:11 [Bug fortran/15978] New: ICE with implicit none (invalid code) pinskia at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2004-07-09 14:55 ` cvs-commit at gcc dot gnu dot org
@ 2004-07-09 14:56 ` tobi at gcc dot gnu dot org
  2004-07-09 15:21 ` tobi at gcc dot gnu dot org
  2004-07-10  0:25 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: tobi at gcc dot gnu dot org @ 2004-07-09 14:56 UTC (permalink / raw)
  To: gcc-bugs



-- 
Bug 15978 depends on bug 15481, which changed state.

Bug 15481 Summary: [meta-bugs] frontend adds superfluous symbols to namespaces
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15481

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

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


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

* [Bug fortran/15978] ICE with implicit none (invalid code)
  2004-06-13 18:11 [Bug fortran/15978] New: ICE with implicit none (invalid code) pinskia at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2004-07-09 14:56 ` tobi at gcc dot gnu dot org
@ 2004-07-09 15:21 ` tobi at gcc dot gnu dot org
  2004-07-10  0:25 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: tobi at gcc dot gnu dot org @ 2004-07-09 15:21 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tobi at gcc dot gnu dot org  2004-07-09 15:21 -------
Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


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


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

* [Bug fortran/15978] ICE with implicit none (invalid code)
  2004-06-13 18:11 [Bug fortran/15978] New: ICE with implicit none (invalid code) pinskia at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2004-07-09 15:21 ` tobi at gcc dot gnu dot org
@ 2004-07-10  0:25 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-10  0:25 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |3.5.0


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


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

end of thread, other threads:[~2004-07-10  0:25 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-06-13 18:11 [Bug fortran/15978] New: ICE with implicit none (invalid code) pinskia at gcc dot gnu dot org
2004-06-19  6:23 ` [Bug fortran/15978] " pinskia at gcc dot gnu dot org
2004-06-22 14:00 ` tobi at gcc dot gnu dot org
2004-06-22 14:01 ` tobi at gcc dot gnu dot org
2004-07-09 14:54 ` cvs-commit at gcc dot gnu dot org
2004-07-09 14:55 ` cvs-commit at gcc dot gnu dot org
2004-07-09 14:56 ` tobi at gcc dot gnu dot org
2004-07-09 15:21 ` tobi at gcc dot gnu dot org
2004-07-10  0:25 ` 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).