[Bug fortran/18827] ICE on assign to common variable

2005-03-15 Thread fengwang at gcc dot gnu dot org
--- Additional Comments From fengwang at gcc dot gnu dot org 2005-03-16 00:19 --- Fixed -- What|Removed |Added Status|NEW |RESOLVED

[Bug fortran/18827] ICE on assign to common variable

2005-03-15 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=18827

[Bug fortran/18827] ICE on assign to common variable

2005-03-14 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-03-15 02:52 --- Subject: Bug 18827 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-03-15 02:52:38 Modified files: gcc/testsuite : ChangeLog gcc/fortran:

[Bug fortran/18827] ICE on assign to common variable

2005-03-14 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-03-15 03:43 --- Subject: Bug 18827 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-03-15 03:42:49 Modified files: gcc/testsuite :

[Bug fortran/18827] ICE on assign to common variable

2005-01-23 Thread wf_cs at yahoo dot com
--- Additional Comments From wf_cs at yahoo dot com 2005-01-23 11:36 --- http://gcc.gnu.org/ml/fortran/2004-12/msg00136.html http://gcc.gnu.org/ml/fortran/2005-01/msg00118.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18827

[Bug fortran/18827] ICE on assign to common variable

2005-01-06 Thread tobi at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||19292 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18827

[Bug fortran/18827] ICE on assign to common variable

2004-12-10 Thread wf_cs at yahoo dot com
--- Additional Comments From wf_cs at yahoo dot com 2004-12-10 14:58 --- I've fixed the first and am looking into the second. I think the second (variable with equivalence)is an invalid code. ifort also gives an error. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18827

[Bug fortran/18827] ICE on assign to common variable

2004-12-04 Thread Thomas dot Koenig at online dot de
-- What|Removed |Added Summary|compiler segfault on assign |ICE on assign to common |to common variable |variable

[Bug fortran/18827] ICE on assign to common variable

2004-12-04 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-12-04 13:16 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW

[Bug fortran/18827] ICE on assign to common variable

2004-12-04 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-04 14:56 --- The same bug is triggered if the assigned variable is equivalenced: $ cat assign4.f program main integer i integer j equivalence (i,j) assign 1000 to i goto j 1000