public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/18518] New: d1mach(4)  (BLAS) broken, g77 regression
@ 2004-11-16 10:35 Thomas dot Koenig at online dot de
  2004-11-16 10:36 ` [Bug fortran/18518] " Thomas dot Koenig at online dot de
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Thomas dot Koenig at online dot de @ 2004-11-16 10:35 UTC (permalink / raw)
  To: gcc-bugs

For source code see attachment. The source came
from http://www.netlib.org/blas/d1mach.f .

For new code, this should not be an ussue, because
these numbers are supplied by the front end.  Old
code from sources like netlib relies on these routines,
and it's a pain to have to change them.

$ gfortran -v
Reading specs from /home/zfkts/lib/gcc/ia64-unknown-linux-gnu/4.0.0/specs
Configured with: ../gcc-4.0-20041107/configure --prefix=/home/zfkts
--enable-languages=c,c++,f95
Thread model: posix
gcc version 4.0.0 20041107 (experimental)
$ gfortran d1mach.f && ./a.out
  2.225073858507201E-308
   0.00000000000000
  3.182993687584259E-313
  2.121995792447469E-314
  0.301029995663981
$ g77 d1mach.f && ./a.out
  2.22507386E-308
  1.79769313E+308
  1.11022302E-16
  2.22044605E-16
  0.301029996
$ ifort d1mach.f && ./a.out
  2.225073858507201E-308
  1.797693134862316E+308
  1.110223024625157E-016
  2.220446049250313E-016
  0.301029995663981

-- 
           Summary: d1mach(4)  (BLAS) broken, g77 regression
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: Thomas dot Koenig at online dot de
                CC: gcc-bugs at gcc dot gnu dot org
  GCC host triplet: ia64-unknown-linux-gnu


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


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

* [Bug fortran/18518] d1mach(4)  (BLAS) broken, g77 regression
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
@ 2004-11-16 10:36 ` Thomas dot Koenig at online dot de
  2004-11-16 13:59 ` pinskia at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Thomas dot Koenig at online dot de @ 2004-11-16 10:36 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Thomas dot Koenig at online dot de  2004-11-16 10:35 -------
Created an attachment (id=7553)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7553&action=view)
test case


-- 


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


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

* [Bug fortran/18518] d1mach(4)  (BLAS) broken, g77 regression
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
  2004-11-16 10:36 ` [Bug fortran/18518] " Thomas dot Koenig at online dot de
@ 2004-11-16 13:59 ` pinskia at gcc dot gnu dot org
  2004-11-17  8:46 ` c dot lemmen at fz-juelich dot de
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-11-16 13:59 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code


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


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

* [Bug fortran/18518] d1mach(4)  (BLAS) broken, g77 regression
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
  2004-11-16 10:36 ` [Bug fortran/18518] " Thomas dot Koenig at online dot de
  2004-11-16 13:59 ` pinskia at gcc dot gnu dot org
@ 2004-11-17  8:46 ` c dot lemmen at fz-juelich dot de
  2004-11-18  9:02 ` Thomas dot Koenig at online dot de
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: c dot lemmen at fz-juelich dot de @ 2004-11-17  8:46 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From c dot lemmen at fz-juelich dot de  2004-11-17 08:46 -------
On AMD x32 the correct result is obtained with g77. g95 and pgfortran work as
expected, only gfortran stops:

> gfortran d1mach.f && ./a.out
  2.225073858507201E-308
At line 215 of file d1mach.f
STOP 778



-- 


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


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

* [Bug fortran/18518] d1mach(4)  (BLAS) broken, g77 regression
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (2 preceding siblings ...)
  2004-11-17  8:46 ` c dot lemmen at fz-juelich dot de
@ 2004-11-18  9:02 ` Thomas dot Koenig at online dot de
  2004-11-18 18:53 ` [Bug fortran/18518] equivalenced variables are not saved Thomas dot Koenig at online dot de
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Thomas dot Koenig at online dot de @ 2004-11-18  9:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Thomas dot Koenig at online dot de  2004-11-18 09:02 -------
(In reply to comment #2)
> On AMD x32 the correct result is obtained with g77. g95 and pgfortran work as
> expected, only gfortran stops:
> 
> > gfortran d1mach.f && ./a.out
>   2.225073858507201E-308
> At line 215 of file d1mach.f
> STOP 778

Same result here, with the same processor.  There is different
(but not correct) behavior with -ffloat-store:

$ gfortran -ffloat-store d1mach.f && ./a.out
  2.225073858507201E-308
  4.882199637915989E-270
  5.092789898316654E-312
  4.925696698649795E-270
   2.79357004253718


-- 


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


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

* [Bug fortran/18518] equivalenced variables are not saved
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (3 preceding siblings ...)
  2004-11-18  9:02 ` Thomas dot Koenig at online dot de
@ 2004-11-18 18:53 ` Thomas dot Koenig at online dot de
  2004-11-20 12:10 ` toon at moene dot indiv dot nluug dot nl
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Thomas dot Koenig at online dot de @ 2004-11-18 18:53 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Thomas dot Koenig at online dot de  2004-11-18 18:53 -------
It appears that equivalenced variables are not
saved.

Here's a simplified test case:

$ cat pr18518-test.f90
program main
  call foo
  call bar
  call foo
end program main

subroutine foo
  integer i,g,h
  data i/0/
  equivalence (g,h)
  save g
  if (i == 0) then
     i = 1
     h = 12345
  end if
  print *,h
end subroutine foo

subroutine bar
  integer a(10)
  a = 34
end subroutine bar
$ gfortran pr18518-test.f90 && ./a.out
       12345
          34

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|d1mach(4)  (BLAS) broken,   |equivalenced variables are
                   |g77 regression              |not saved


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


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

* [Bug fortran/18518] equivalenced variables are not saved
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (4 preceding siblings ...)
  2004-11-18 18:53 ` [Bug fortran/18518] equivalenced variables are not saved Thomas dot Koenig at online dot de
@ 2004-11-20 12:10 ` toon at moene dot indiv dot nluug dot nl
  2004-11-20 13:20 ` Thomas dot Koenig at online dot de
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: toon at moene dot indiv dot nluug dot nl @ 2004-11-20 12:10 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From toon at moene dot indiv dot nluug dot nl  2004-11-20 12:10 -------
Hmmm, I do not get this on my powerpc-unknown-linux-gnu:

toon@book:~/g95-bugs$ /usr/snp/bin/gfortran -O2 18518.f90
toon@book:~/g95-bugs$ (LD_LIBRARY_PATH=/usr/snp/lib export LD_LIBRARY_PATH; ./a.out)
       12345
       12345
toon@book:~/g95-bugs$ /usr/snp/bin/gfortran -v
Reading specs from /usr/snp/lib/gcc/powerpc-unknown-linux-gnu/4.0.0/specs
Configured with: ../gcc/configure --prefix=/usr/snp --disable-nls --disable-multilib
Thread model: posix
gcc version 4.0.0 20041119 (experimental)


-- 


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


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

* [Bug fortran/18518] equivalenced variables are not saved
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (5 preceding siblings ...)
  2004-11-20 12:10 ` toon at moene dot indiv dot nluug dot nl
@ 2004-11-20 13:20 ` Thomas dot Koenig at online dot de
  2004-11-22 12:30 ` Thomas dot Koenig at online dot de
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Thomas dot Koenig at online dot de @ 2004-11-20 13:20 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Thomas dot Koenig at online dot de  2004-11-20 13:19 -------
> Hmmm, I do not get this on my powerpc-unknown-linux-gnu:

Here's a reduced assembly output:

$ gfortran -v
Reading specs from /home/ig25/lib/gcc/i686-pc-linux-gnu/4.0.0/specs
Configured with: ../gcc/configure --prefix=/home/ig25 --enable-languages=c,c++,f95
Thread model: posix
gcc version 4.0.0 20041120 (experimental)
$ cat pr18518-test2.f90
subroutine foo
  integer i,g,h
  data i/0/
  equivalence (g,h)
  save g
  if (i == 0) then
     i = 1
     h = 12345
  end if
  print *,h
end subroutine foo
$ gfortran -S pr18518-test2.f90
$ cat pr18518-test2.s
        .file   "pr18518-test2.f90"
        .local  i.456
        .comm   i.456,4,4
        .section        .rodata
.LC0:
        .string "pr18518-test2.f90"
        .text
.globl foo_
        .type   foo_, @function
foo_:
        pushl   %ebp
        movl    %esp, %ebp
        subl    $24, %esp
        movl    i.456, %eax
        testl   %eax, %eax
        jne     .L2
        movl    $1, i.456
        movl    $12345, -4(%ebp)
.L2:
        movl    $.LC0, _gfortran_filename
        movl    $10, _gfortran_line
        movl    $6, _gfortran_ioparm
        movl    $1, _gfortran_ioparm+16
        call    _gfortran_st_write
        movl    $4, 4(%esp)
        leal    -4(%ebp), %eax
        movl    %eax, (%esp)
        call    _gfortran_transfer_integer
        call    _gfortran_st_write_done
        leave
        ret
        .size   foo_, .-foo_
        .ident  "GCC: (GNU) 4.0.0 20041120 (experimental)"
        .section        .note.GNU-stack,"",@progbits
$ 
The "movl $12345, -4(%ebp)" above is clearly wrong - it loads the
value of 12345 into a stack location, not a saved location.

It would be good to check assembly output on your machine to
see wether the same problem occurs (even if the test example
doesn't show it).

-- 


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


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

* [Bug fortran/18518] equivalenced variables are not saved
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (6 preceding siblings ...)
  2004-11-20 13:20 ` Thomas dot Koenig at online dot de
@ 2004-11-22 12:30 ` Thomas dot Koenig at online dot de
  2004-11-30 15:18 ` tobi at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Thomas dot Koenig at online dot de @ 2004-11-22 12:30 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Thomas dot Koenig at online dot de  2004-11-22 12:29 -------
(In reply to comment #5)
> Hmmm, I do not get this on my powerpc-unknown-linux-gnu:

I am also not getting this with -O on ia64-unknown-linux-gnu .  Apparently,
the array assignment in bar is commented away, and the stack isn't clobbered.

Here is another testcase, which causes the bug to be exposed (for me,
at least):

$ gfortran -v
Reading specs from /home/zfkts/lib/gcc/ia64-unknown-linux-gnu/4.0.0/specs
Configured with: ../gcc-4.0-20041107/configure --prefix=/home/zfkts
--enable-languages=c,c++,f95
Thread model: posix
gcc version 4.0.0 20041107 (experimental)
$ cat foobar.f90
program main
  call foo
  call bar(i)
  call foo
end program main

subroutine foo
  integer i,g,h
  data i/0/
  equivalence (g,h)
  save g
  if (i == 0) then
     i = 1
     h = 12345
  end if
  print *,h
end subroutine foo

subroutine bar(n)
  integer a(10)
  a = (/ (i, i=1,10) /)
  n = sum(a)
end subroutine bar
$ gfortran foobar.f90 && ./a.out
       12345
          55
$ gfortran -O foobar.f90 && ./a.out
       12345
           7


-- 


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


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

* [Bug fortran/18518] equivalenced variables are not saved
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (7 preceding siblings ...)
  2004-11-22 12:30 ` Thomas dot Koenig at online dot de
@ 2004-11-30 15:18 ` tobi at gcc dot gnu dot org
  2005-01-06 14:42 ` tobi at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: tobi at gcc dot gnu dot org @ 2004-11-30 15:18 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tobi at gcc dot gnu dot org  2004-11-30 15:17 -------
Verified.

Indeed, we forget that variables in an equivalence set are SAVEd, and therefore
don't save the equivalence set.

I tried adding a path to build_equiv_decl where TREE_STATIC is set even if
there's no initialization. UNfortunately that lead to a segfault in the compiler.


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-11-30 15:17:53
               date|                            |


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


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

* [Bug fortran/18518] equivalenced variables are not saved
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (8 preceding siblings ...)
  2004-11-30 15:18 ` tobi at gcc dot gnu dot org
@ 2005-01-06 14:42 ` tobi at gcc dot gnu dot org
  2005-03-01 14:11 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: tobi at gcc dot gnu dot org @ 2005-01-06 14:42 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |19292
              nThis|                            |


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


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

* [Bug fortran/18518] equivalenced variables are not saved
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (9 preceding siblings ...)
  2005-01-06 14:42 ` tobi at gcc dot gnu dot org
@ 2005-03-01 14:11 ` pinskia at gcc dot gnu dot org
  2005-03-10 14:34 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-03-01 14:11 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
   Last reconfirmed|2004-11-30 15:17:53         |2005-03-01 14:11:45
               date|                            |


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


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

* [Bug fortran/18518] equivalenced variables are not saved
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (10 preceding siblings ...)
  2005-03-01 14:11 ` pinskia at gcc dot gnu dot org
@ 2005-03-10 14:34 ` pinskia at gcc dot gnu dot org
  2005-09-27 21:47 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-03-10 14:34 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |20405
              nThis|                            |


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


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

* [Bug fortran/18518] equivalenced variables are not saved
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (11 preceding siblings ...)
  2005-03-10 14:34 ` pinskia at gcc dot gnu dot org
@ 2005-09-27 21:47 ` cvs-commit at gcc dot gnu dot org
  2005-09-29 21:30 ` cvs-commit at gcc dot gnu dot org
  2005-09-29 21:33 ` pinskia at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-09-27 21:47 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-09-27 21:46 -------
Subject: Bug 18518

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	jakub@gcc.gnu.org	2005-09-27 21:46:15

Modified files:
	gcc/testsuite  : ChangeLog 
	gcc/fortran    : ChangeLog 
	gcc/fortran    : trans-common.c 
Added files:
	gcc/testsuite/gfortran.fortran-torture/execute: save_2.f90 

Log message:
	PR fortran/18518
	* trans-common.c (build_equiv_decl): Add IS_SAVED argument.
	If it is true, set TREE_STATIC on the decl.
	(create_common): If any symbol in equivalence has SAVE attribute,
	pass true as last argument to build_equiv_decl.
	
	* gfortran.fortran-torture/execute/save_2.f90: New decl.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.6108&r2=1.6109
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/ChangeLog.diff?cvsroot=gcc&r1=1.571&r2=1.572
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/trans-common.c.diff?cvsroot=gcc&r1=1.31&r2=1.32
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.fortran-torture/execute/save_2.f90.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


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


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

* [Bug fortran/18518] equivalenced variables are not saved
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (12 preceding siblings ...)
  2005-09-27 21:47 ` cvs-commit at gcc dot gnu dot org
@ 2005-09-29 21:30 ` cvs-commit at gcc dot gnu dot org
  2005-09-29 21:33 ` pinskia at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-09-29 21:30 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-09-29 21:30 -------
Subject: Bug 18518

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-4_0-branch
Changes by:	jakub@gcc.gnu.org	2005-09-29 21:30:01

Modified files:
	gcc/fortran    : ChangeLog 
	gcc/testsuite  : ChangeLog 
	gcc/fortran    : trans-common.c 
Added files:
	gcc/testsuite/gfortran.fortran-torture/execute: save_2.f90 

Log message:
	PR fortran/18518
	* trans-common.c (build_equiv_decl): Add IS_SAVED argument.
	If it is true, set TREE_STATIC on the decl.
	(create_common): If any symbol in equivalence has SAVE attribute,
	pass true as last argument to build_equiv_decl.
	
	* gfortran.fortran-torture/execute/save_2.f90: New decl.

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.122&r2=1.335.2.123
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.417&r2=1.5084.2.418
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/trans-common.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.23.2.5&r2=1.23.2.6
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gfortran.fortran-torture/execute/save_2.f90.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.4.1



-- 


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


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

* [Bug fortran/18518] equivalenced variables are not saved
  2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
                   ` (13 preceding siblings ...)
  2005-09-29 21:30 ` cvs-commit at gcc dot gnu dot org
@ 2005-09-29 21:33 ` pinskia at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-09-29 21:33 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-09-29 21:32 -------
Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.3


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


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

end of thread, other threads:[~2005-09-29 21:33 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-16 10:35 [Bug fortran/18518] New: d1mach(4) (BLAS) broken, g77 regression Thomas dot Koenig at online dot de
2004-11-16 10:36 ` [Bug fortran/18518] " Thomas dot Koenig at online dot de
2004-11-16 13:59 ` pinskia at gcc dot gnu dot org
2004-11-17  8:46 ` c dot lemmen at fz-juelich dot de
2004-11-18  9:02 ` Thomas dot Koenig at online dot de
2004-11-18 18:53 ` [Bug fortran/18518] equivalenced variables are not saved Thomas dot Koenig at online dot de
2004-11-20 12:10 ` toon at moene dot indiv dot nluug dot nl
2004-11-20 13:20 ` Thomas dot Koenig at online dot de
2004-11-22 12:30 ` Thomas dot Koenig at online dot de
2004-11-30 15:18 ` tobi at gcc dot gnu dot org
2005-01-06 14:42 ` tobi at gcc dot gnu dot org
2005-03-01 14:11 ` pinskia at gcc dot gnu dot org
2005-03-10 14:34 ` pinskia at gcc dot gnu dot org
2005-09-27 21:47 ` cvs-commit at gcc dot gnu dot org
2005-09-29 21:30 ` cvs-commit at gcc dot gnu dot org
2005-09-29 21:33 ` 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).