public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element.
@ 2005-02-12 21:10 sgk at troutmask dot apl dot washington dot edu
  2005-02-12 21:35 ` [Bug fortran/19926] " pinskia at gcc dot gnu dot org
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: sgk at troutmask dot apl dot washington dot edu @ 2005-02-12 21:10 UTC (permalink / raw)
  To: gcc-bugs

>From Richard Maine, editor of the F2003 standard

    subroutine string_comp
       integer, parameter :: map(0:50) = 0
       integer :: i
       i = map(42)
    end subroutine string_comp

    In file bug2.f90:4

       i = map(42)
           1
    Error: Incompatible ranks 0 and 1 in assignment at (1)

    Note that it works without the parameter attribute.

-- 
           Summary: Incorrect rank with PARAMETER and array element.
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: sgk at troutmask dot apl dot washington dot edu
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug fortran/19926] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
@ 2005-02-12 21:35 ` pinskia at gcc dot gnu dot org
  2005-03-12 12:57 ` toon at moene dot indiv dot nluug dot nl
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-02-12 21:35 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-02-12 16:51 -------
Confirmed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |rejects-valid
   Last reconfirmed|0000-00-00 00:00:00         |2005-02-12 16:51:12
               date|                            |


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


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

* [Bug fortran/19926] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
  2005-02-12 21:35 ` [Bug fortran/19926] " pinskia at gcc dot gnu dot org
@ 2005-03-12 12:57 ` toon at moene dot indiv dot nluug dot nl
  2005-06-10 23:35 ` eedelman at acclab dot helsinki dot fi
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: toon at moene dot indiv dot nluug dot nl @ 2005-03-12 12:57 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From toon at moene dot indiv dot nluug dot nl  2005-03-12 12:57 -------
*** Bug 20334 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |toon at moene dot indiv dot
                   |                            |nluug dot nl


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


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

* [Bug fortran/19926] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
  2005-02-12 21:35 ` [Bug fortran/19926] " pinskia at gcc dot gnu dot org
  2005-03-12 12:57 ` toon at moene dot indiv dot nluug dot nl
@ 2005-06-10 23:35 ` eedelman at acclab dot helsinki dot fi
  2005-06-11  9:39 ` eedelman at acclab dot helsinki dot fi
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: eedelman at acclab dot helsinki dot fi @ 2005-06-10 23:35 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From eedelman at acclab dot helsinki dot fi  2005-06-10 23:35 -------
This patch seems to fixe the bug:

Index: gcc/fortran/primary.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/fortran/primary.c,v
retrieving revision 1.22.2.3
diff -u -p -r1.22.2.3 primary.c
--- gcc/fortran/primary.c       25 Apr 2005 00:09:14 -0000      1.22.2.3
+++ gcc/fortran/primary.c       10 Jun 2005 23:17:45 -0000
@@ -1804,7 +1804,10 @@ gfc_match_rvalue (gfc_expr ** result)
     case FL_PARAMETER:
       if (sym->value
          && sym->value->expr_type != EXPR_ARRAY)
-       e = gfc_copy_expr (sym->value);
+        {
+         e = gfc_copy_expr (sym->value);
+         e->rank = 0;
+        }
       else
        {
          e = gfc_get_expr ();

However, I suspect that this patch only hides the real problem instead of
solving it.  I'll have to investigate it some more before I send the patch for
review/committing.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |eedelman at acclab dot
                   |                            |helsinki dot fi


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


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

* [Bug fortran/19926] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
                   ` (2 preceding siblings ...)
  2005-06-10 23:35 ` eedelman at acclab dot helsinki dot fi
@ 2005-06-11  9:39 ` eedelman at acclab dot helsinki dot fi
  2005-06-11 12:44 ` eedelman at acclab dot helsinki dot fi
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: eedelman at acclab dot helsinki dot fi @ 2005-06-11  9:39 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From eedelman at acclab dot helsinki dot fi  2005-06-11 09:39 -------
(In reply to comment #4) 
> I tested the attached patch, which is equivalent to Erik's
> patch with the exception that I remove an unnecesary \n in
> the conditional of the if ().
> 
> I've also attached a test case.  If no one has any objections,
> I'll apply the patch after my current regression test completes.

Just to elaborate on what I meant with suspecting thet the patch only hides the
problem instead of solving it.

One thing that slightly worries my is, why isn't e->rank zero by itself?  If you
make string_comp in the fortran code a PROGRAM instead of SUBROUTINE, e->rank
_is_ zero (even without the patch).  I feel there is something fishy going on,
and I don't feel completely comfortable with the patch before I know what it is.

-- 


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


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

* [Bug fortran/19926] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
                   ` (3 preceding siblings ...)
  2005-06-11  9:39 ` eedelman at acclab dot helsinki dot fi
@ 2005-06-11 12:44 ` eedelman at acclab dot helsinki dot fi
  2005-06-11 13:49 ` sgk at troutmask dot apl dot washington dot edu
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: eedelman at acclab dot helsinki dot fi @ 2005-06-11 12:44 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From eedelman at acclab dot helsinki dot fi  2005-06-11 12:43 -------
(In reply to comment #7) 
> One thing that slightly worries my is, why isn't e->rank zero by itself?  If you
> make string_comp in the fortran code a PROGRAM instead of SUBROUTINE, e->rank
> _is_ zero (even without the patch).  I feel there is something fishy going on,
> and I don't feel completely comfortable with the patch before I know what it is.

Ok, I've messed up a bit -- when I changed SUBROUTINE to PROGRAM, I did some
other changes to the code as well.  Apperantly, it was one of those other
changes that made it work.  I have no objections against applying the patch.

-- 


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


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

* [Bug fortran/19926] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
                   ` (4 preceding siblings ...)
  2005-06-11 12:44 ` eedelman at acclab dot helsinki dot fi
@ 2005-06-11 13:49 ` sgk at troutmask dot apl dot washington dot edu
  2005-06-13  1:49 ` kargl at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sgk at troutmask dot apl dot washington dot edu @ 2005-06-11 13:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From sgk at troutmask dot apl dot washington dot edu  2005-06-11 13:49 -------
Subject: Re:  Incorrect rank with PARAMETER and array element.

On Sat, Jun 11, 2005 at 09:39:13AM -0000, eedelman at acclab dot helsinki dot fi wrote:
> 
> Just to elaborate on what I meant with suspecting thet the patch only hides the
> problem instead of solving it.
> 
> One thing that slightly worries my is, why isn't e->rank zero by itself?

You might be right that this is papering over the true bug.

The code looks like 

  case FL_PARAMETER:
    if (sym->value && sym->value->expr_type != EXPR_ARRAY)
      {
         e = gfc_copy_expr (sym->value);
         e->rank = 0;
      }

e = gfc_copy_expr (sym->value) literally copies the sym->value expression
node into the e expression node.  sym->value->rank is 1.  We've probably
kludged around the bug by setting e->rank = 0.  So, how do we get here.
sym->value->expr_type == EXPR_CONSTANT because of PARAMETER in "REAL,
PARAMETER :: map(0:50) = 0".  I'll look at this sometime today.



-- 


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


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

* [Bug fortran/19926] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
                   ` (5 preceding siblings ...)
  2005-06-11 13:49 ` sgk at troutmask dot apl dot washington dot edu
@ 2005-06-13  1:49 ` kargl at gcc dot gnu dot org
  2005-06-18 18:16 ` cvs-commit at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: kargl at gcc dot gnu dot org @ 2005-06-13  1:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From kargl at gcc dot gnu dot org  2005-06-13 01:49 -------
New patch.

http://gcc.gnu.org/ml/gcc-patches/2005-06/msg01088.html

-- 


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


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

* [Bug fortran/19926] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
                   ` (6 preceding siblings ...)
  2005-06-13  1:49 ` kargl at gcc dot gnu dot org
@ 2005-06-18 18:16 ` cvs-commit at gcc dot gnu dot org
  2005-06-18 18:21 ` [Bug fortran/19926] [4.0 only] " kargl at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-06-18 18:16 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-06-18 18:16 -------
Subject: Bug 19926

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	kargl@gcc.gnu.org	2005-06-18 18:16:22

Modified files:
	gcc/fortran    : ChangeLog primary.c 

Log message:
	PR fortran/19926
	* primary.c (gfc_match_rvalue):  expr_type can be EXPR_CONSTANT
	for an array; check that sym->as is NULL.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/ChangeLog.diff?cvsroot=gcc&r1=1.465&r2=1.466
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/primary.c.diff?cvsroot=gcc&r1=1.25&r2=1.26



-- 


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


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

* [Bug fortran/19926] [4.0 only] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
                   ` (7 preceding siblings ...)
  2005-06-18 18:16 ` cvs-commit at gcc dot gnu dot org
@ 2005-06-18 18:21 ` kargl at gcc dot gnu dot org
  2005-06-18 18:27 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: kargl at gcc dot gnu dot org @ 2005-06-18 18:21 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From kargl at gcc dot gnu dot org  2005-06-18 18:20 -------
Fixed in 4.1.  I close this when I commit to 4.0.2.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch
      Known to work|                            |4.1.0
            Summary|Incorrect rank with         |[4.0 only] Incorrect rank
                   |PARAMETER and array element.|with PARAMETER and array
                   |                            |element.
   Target Milestone|---                         |4.0.2


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


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

* [Bug fortran/19926] [4.0 only] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
                   ` (8 preceding siblings ...)
  2005-06-18 18:21 ` [Bug fortran/19926] [4.0 only] " kargl at gcc dot gnu dot org
@ 2005-06-18 18:27 ` cvs-commit at gcc dot gnu dot org
  2005-07-08 21:21 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-06-18 18:27 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-06-18 18:27 -------
Subject: Bug 19926

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	kargl@gcc.gnu.org	2005-06-18 18:27:06

Modified files:
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gfortran.dg: pr19926.f90 

Log message:
	PR fortran/19926
	* gfortran.dg/pr19926.f90: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.5653&r2=1.5654
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/pr19926.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


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


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

* [Bug fortran/19926] [4.0 only] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
                   ` (9 preceding siblings ...)
  2005-06-18 18:27 ` cvs-commit at gcc dot gnu dot org
@ 2005-07-08 21:21 ` cvs-commit at gcc dot gnu dot org
  2005-07-08 21:25 ` cvs-commit at gcc dot gnu dot org
  2005-07-08 21:26 ` kargl at gcc dot gnu dot org
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-07-08 21:21 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-07-08 21:19 -------
Subject: Bug 19926

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-4_0-branch
Changes by:	kargl@gcc.gnu.org	2005-07-08 21:19:28

Modified files:
	gcc/fortran    : ChangeLog intrinsic.c match.c primary.c 
	                 trans-array.c trans-array.h trans-decl.c 
	                 trans-stmt.c 

Log message:
	Backport from the mainline:
	PR fortran/21257
	(port from g95)
	* match.c (gfc_match_label): Detect duplicate labels.
	* gfortran.dg/duplicate_labels.f90: New test.
	
	PR fortran/19926
	* primary.c (gfc_match_rvalue):  expr_type can be EXPR_CONSTANT
	for an array; check that sym->as is NULL.
	* gfortran.dg/pr19926.f90: New test.
	
	PR fortran/17792
	PR fortran/21375
	* trans-array.c (gfc_array_deallocate): pstat is new argument
	(gfc_array_allocate): update gfc_array_deallocate() call.
	(gfc_trans_deferred_array): ditto.
	* trans-array.h: update gfc_array_deallocate() prototype.
	* trans-decl.c (gfc_build_builtin_function_decls): update declaration
	* trans-stmt.c (gfc_trans_deallocate): Implement STAT= feature.
	
	* intrinsic.c (gfc_intrinsic_func_interface): Enable errors for generic
	functions whose simplification routine return FAILURE.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.335.2.76&r2=1.335.2.77
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/intrinsic.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.44.2.3&r2=1.44.2.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/match.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.31.8.7&r2=1.31.8.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/primary.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.22.2.4&r2=1.22.2.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/trans-array.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.39.2.5&r2=1.39.2.6
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/trans-array.h.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.7.18.1&r2=1.7.18.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/trans-decl.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.54.2.3&r2=1.54.2.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/trans-stmt.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.24.6.5&r2=1.24.6.6



-- 


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


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

* [Bug fortran/19926] [4.0 only] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
                   ` (10 preceding siblings ...)
  2005-07-08 21:21 ` cvs-commit at gcc dot gnu dot org
@ 2005-07-08 21:25 ` cvs-commit at gcc dot gnu dot org
  2005-07-08 21:26 ` kargl at gcc dot gnu dot org
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-07-08 21:25 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-07-08 21:21 -------
Subject: Bug 19926

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-4_0-branch
Changes by:	kargl@gcc.gnu.org	2005-07-08 21:21:38

Modified files:
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gfortran.dg: deallocate_stat.f90 
	                           duplicate_labels.f90 pr19926.f90 

Log message:
	PR fortran/17792
	PR fortran/21375
	* gfortran.dg/deallocate_stat.f90:  New test.
	
	PR fortran/19926
	* gfortran.dg/pr19926.f90: New test.
	
	PR fortran/21257
	* gfortran.dg/duplicate_labels.f90: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.5084.2.253&r2=1.5084.2.254
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/deallocate_stat.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/duplicate_labels.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.dg/pr19926.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.8.1



-- 


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


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

* [Bug fortran/19926] [4.0 only] Incorrect rank with PARAMETER and array element.
  2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
                   ` (11 preceding siblings ...)
  2005-07-08 21:25 ` cvs-commit at gcc dot gnu dot org
@ 2005-07-08 21:26 ` kargl at gcc dot gnu dot org
  12 siblings, 0 replies; 14+ messages in thread
From: kargl at gcc dot gnu dot org @ 2005-07-08 21:26 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From kargl at gcc dot gnu dot org  2005-07-08 21:26 -------
Back ported to 4.0

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


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


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

end of thread, other threads:[~2005-07-08 21:26 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-12 21:10 [Bug fortran/19926] New: Incorrect rank with PARAMETER and array element sgk at troutmask dot apl dot washington dot edu
2005-02-12 21:35 ` [Bug fortran/19926] " pinskia at gcc dot gnu dot org
2005-03-12 12:57 ` toon at moene dot indiv dot nluug dot nl
2005-06-10 23:35 ` eedelman at acclab dot helsinki dot fi
2005-06-11  9:39 ` eedelman at acclab dot helsinki dot fi
2005-06-11 12:44 ` eedelman at acclab dot helsinki dot fi
2005-06-11 13:49 ` sgk at troutmask dot apl dot washington dot edu
2005-06-13  1:49 ` kargl at gcc dot gnu dot org
2005-06-18 18:16 ` cvs-commit at gcc dot gnu dot org
2005-06-18 18:21 ` [Bug fortran/19926] [4.0 only] " kargl at gcc dot gnu dot org
2005-06-18 18:27 ` cvs-commit at gcc dot gnu dot org
2005-07-08 21:21 ` cvs-commit at gcc dot gnu dot org
2005-07-08 21:25 ` cvs-commit at gcc dot gnu dot org
2005-07-08 21:26 ` kargl 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).