public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/41278]  New: internal compiler error related to matmul and transpose
@ 2009-09-05 14:38 cmklaij at hetnet dot nl
  2009-09-05 14:54 ` [Bug fortran/41278] " jvdelisle at gcc dot gnu dot org
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: cmklaij at hetnet dot nl @ 2009-09-05 14:38 UTC (permalink / raw)
  To: gcc-bugs

This works with g95 and ifort but gives a compiler error with gfortran:

bash-3.1$ cat bug.F90 
program bug

  implicit none
  real, dimension(3,3) :: matA,matB

  matA(1,:)=(/1., 2., 3./)
  matA(2,:)=(/4., 5., 6./)
  matA(3,:)=(/7., 8., 9./)

  matB=matmul(transpose(0.5*matA),matA)

end program bug
bash-3.1$ gfortran -v -Wall bug.F90 -o bug 
Driving: gfortran -v -Wall bug.F90 -o bug -lgfortranbegin -lgfortran -lm
-shared-libgcc
Reading specs from /usr/lib64/gcc/x86_64-slackware-linux/4.3.3/specs
Target: x86_64-slackware-linux
Configured with: ../gcc-4.3.3/configure --prefix=/usr --libdir=/usr/lib64
--enable-shared --enable-bootstrap
--enable-languages=ada,c,c++,fortran,java,objc --enable-threads=posix
--enable-checking=release --with-system-zlib --disable-libunwind-exceptions
--enable-__cxa_atexit --enable-libssp --with-gnu-ld --verbose
--disable-multilib --target=x86_64-slackware-linux
--build=x86_64-slackware-linux --host=x86_64-slackware-linux
Thread model: posix
gcc version 4.3.3 (GCC) 
COLLECT_GCC_OPTIONS='-v' '-Wall' '-o' 'bug' '-shared-libgcc' '-mtune=generic'
 /usr/libexec/gcc/x86_64-slackware-linux/4.3.3/cc1 -E -lang-fortran
-traditional-cpp -D_LANGUAGE_FORTRAN -quiet -v bug.F90 -mtune=generic -Wall -o
/tmp/ccLe3BpA.f95
ignoring nonexistent directory
"/usr/lib64/gcc/x86_64-slackware-linux/4.3.3/../../../../x86_64-slackware-linux/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/local/include
 /usr/lib64/gcc/x86_64-slackware-linux/4.3.3/include
 /usr/lib64/gcc/x86_64-slackware-linux/4.3.3/include-fixed
 /usr/include
End of search list.
COLLECT_GCC_OPTIONS='-v' '-Wall' '-o' 'bug' '-shared-libgcc' '-mtune=generic'
 /usr/libexec/gcc/x86_64-slackware-linux/4.3.3/f951 /tmp/ccLe3BpA.f95
-ffree-form -quiet -dumpbase bug.F90 -mtune=generic -auxbase bug -Wall -version
-fpreprocessed -fintrinsic-modules-path
/usr/lib64/gcc/x86_64-slackware-linux/4.3.3/finclude -o /tmp/ccsYLGw0.s
GNU F95 (GCC) version 4.3.3 (x86_64-slackware-linux)
        compiled by GNU C version 4.3.3, GMP version 4.2.4, MPFR version 2.3.1.
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
bug.F90: In function 'bug':
bug.F90:8: internal compiler error: in gfc_conv_array_transpose, at
fortran/trans-array.c:734
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.


-- 
           Summary: internal compiler error related to matmul and transpose
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: cmklaij at hetnet dot nl


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
@ 2009-09-05 14:54 ` jvdelisle at gcc dot gnu dot org
  2009-09-05 15:19 ` rguenth at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2009-09-05 14:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from jvdelisle at gcc dot gnu dot org  2009-09-05 14:54 -------
ICE confirmed with test case on 4.5


-- 


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
  2009-09-05 14:54 ` [Bug fortran/41278] " jvdelisle at gcc dot gnu dot org
@ 2009-09-05 15:19 ` rguenth at gcc dot gnu dot org
  2009-09-05 15:34 ` jv244 at cam dot ac dot uk
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-09-05 15:19 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |ice-on-valid-code
   Last reconfirmed|0000-00-00 00:00:00         |2009-09-05 15:19:09
               date|                            |
            Version|unknown                     |4.3.3


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
  2009-09-05 14:54 ` [Bug fortran/41278] " jvdelisle at gcc dot gnu dot org
  2009-09-05 15:19 ` rguenth at gcc dot gnu dot org
@ 2009-09-05 15:34 ` jv244 at cam dot ac dot uk
  2009-09-08 16:22 ` tkoenig at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jv244 at cam dot ac dot uk @ 2009-09-05 15:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from jv244 at cam dot ac dot uk  2009-09-05 15:34 -------
853       gcc_assert (src_info->dimen == 2);
(gdb) list
848       dest_ss = se->ss;
849
850       src_info = &src_ss->data.info;
851       dest_info = &dest_ss->data.info;
852       gcc_assert (dest_info->dimen == 2);
853       gcc_assert (src_info->dimen == 2);
854
855       /* Get a descriptor for EXPR.  */
856       gfc_init_se (&src_se, NULL);
857       gfc_conv_expr_descriptor (&src_se, expr, src_ss);


-- 

jv244 at cam dot ac dot uk changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |32834
              nThis|                            |
      Known to fail|                            |4.3.1 4.4.0 4.5.0


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (2 preceding siblings ...)
  2009-09-05 15:34 ` jv244 at cam dot ac dot uk
@ 2009-09-08 16:22 ` tkoenig at gcc dot gnu dot org
  2009-11-26 13:02 ` jvdelisle at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2009-09-08 16:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from tkoenig at gcc dot gnu dot org  2009-09-08 16:21 -------
Not a regression.


-- 


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (3 preceding siblings ...)
  2009-09-08 16:22 ` tkoenig at gcc dot gnu dot org
@ 2009-11-26 13:02 ` jvdelisle at gcc dot gnu dot org
  2009-11-26 14:35 ` jvdelisle at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2009-11-26 13:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from jvdelisle at gcc dot gnu dot org  2009-11-26 13:02 -------
This is what I would call a very fundamental bug, at the soul of what fortran
is suppose to do.  I am looking at it but think it would go better with a team
effort here.  Anyone have any thoughts about it?


-- 


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (4 preceding siblings ...)
  2009-11-26 13:02 ` jvdelisle at gcc dot gnu dot org
@ 2009-11-26 14:35 ` jvdelisle at gcc dot gnu dot org
  2009-11-26 17:50 ` jvdelisle at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2009-11-26 14:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jvdelisle at gcc dot gnu dot org  2009-11-26 14:35 -------
I think we need to gfc_walk_op_expr before we try to gfc_conv_array_transpose


-- 


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (5 preceding siblings ...)
  2009-11-26 14:35 ` jvdelisle at gcc dot gnu dot org
@ 2009-11-26 17:50 ` jvdelisle at gcc dot gnu dot org
  2009-11-26 19:06 ` jvdelisle at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2009-11-26 17:50 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from jvdelisle at gcc dot gnu dot org  2009-11-26 17:50 -------
Removing the assert appears to fix this.  Testing now.


-- 


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (6 preceding siblings ...)
  2009-11-26 17:50 ` jvdelisle at gcc dot gnu dot org
@ 2009-11-26 19:06 ` jvdelisle at gcc dot gnu dot org
  2009-11-26 19:11 ` jvdelisle at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2009-11-26 19:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from jvdelisle at gcc dot gnu dot org  2009-11-26 19:05 -------
Subject: Bug 41278

Author: jvdelisle
Date: Thu Nov 26 19:05:37 2009
New Revision: 154680

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=154680
Log:
2009-11-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR fortran/41278
        * trans-array.c (gfc_conv_array_transpose): Delete unnecessary assert.

Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-array.c


-- 


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (7 preceding siblings ...)
  2009-11-26 19:06 ` jvdelisle at gcc dot gnu dot org
@ 2009-11-26 19:11 ` jvdelisle at gcc dot gnu dot org
  2009-11-26 21:46 ` burnus at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2009-11-26 19:11 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from jvdelisle at gcc dot gnu dot org  2009-11-26 19:10 -------
Subject: Bug 41278

Author: jvdelisle
Date: Thu Nov 26 19:10:29 2009
New Revision: 154681

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=154681
Log:
2009-11-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR fortran/41278
        * gfortran.dg/array_function_5.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/array_function_5.f90
Modified:
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (8 preceding siblings ...)
  2009-11-26 19:11 ` jvdelisle at gcc dot gnu dot org
@ 2009-11-26 21:46 ` burnus at gcc dot gnu dot org
  2009-11-26 22:11 ` jvdelisle at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: burnus at gcc dot gnu dot org @ 2009-11-26 21:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from burnus at gcc dot gnu dot org  2009-11-26 21:46 -------
The following assert is wrong:
  gcc_assert (src_info->dimen == 2);
(and has been removed in the comment patch of comment 7). I only want to link
to an email which gives the reason why.
  http://gcc.gnu.org/ml/fortran/2009-11/msg00212.html


-- 

burnus at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |jvdelisle at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (9 preceding siblings ...)
  2009-11-26 21:46 ` burnus at gcc dot gnu dot org
@ 2009-11-26 22:11 ` jvdelisle at gcc dot gnu dot org
  2009-11-27  8:34 ` burnus at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2009-11-26 22:11 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from jvdelisle at gcc dot gnu dot org  2009-11-26 22:11 -------
Just a note of appreciation to Chris for reporting this bug and providing a
simple and extremely useful test case.  When I get a moment, I will add Chris
to the test case as recognition.

Shall we backport this fix to 4.4?


-- 


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (10 preceding siblings ...)
  2009-11-26 22:11 ` jvdelisle at gcc dot gnu dot org
@ 2009-11-27  8:34 ` burnus at gcc dot gnu dot org
  2009-12-01  4:36 ` jvdelisle at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: burnus at gcc dot gnu dot org @ 2009-11-27  8:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from burnus at gcc dot gnu dot org  2009-11-27 08:34 -------
(In reply to comment #10)
> Just a note of appreciation to Chris for reporting this bug and providing a
> simple and extremely useful test case.  When I get a moment, I will add Chris
> to the test case as recognition.
> 
> Shall we backport this fix to 4.4?

I would say one should: The fix is extremely simple and having TRANSPOSE is not
uncommon in Fortran. (Having TRANSPOSE(<scalar> <operator> <array>) is less
common, though.)


-- 


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (11 preceding siblings ...)
  2009-11-27  8:34 ` burnus at gcc dot gnu dot org
@ 2009-12-01  4:36 ` jvdelisle at gcc dot gnu dot org
  2009-12-01  4:40 ` jvdelisle at gcc dot gnu dot org
  2009-12-01  4:41 ` jvdelisle at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2009-12-01  4:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from jvdelisle at gcc dot gnu dot org  2009-12-01 04:36 -------
Subject: Bug 41278

Author: jvdelisle
Date: Tue Dec  1 04:36:30 2009
New Revision: 154863

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=154863
Log:
2009-11-30  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR fortran/41278
        Backport from mainline.
        * trans-array.c (gfc_conv_array_transpose): Delete unnecessary assert.

Modified:
    branches/gcc-4_4-branch/gcc/fortran/ChangeLog
    branches/gcc-4_4-branch/gcc/fortran/trans-array.c


-- 


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (12 preceding siblings ...)
  2009-12-01  4:36 ` jvdelisle at gcc dot gnu dot org
@ 2009-12-01  4:40 ` jvdelisle at gcc dot gnu dot org
  2009-12-01  4:41 ` jvdelisle at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2009-12-01  4:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from jvdelisle at gcc dot gnu dot org  2009-12-01 04:40 -------
Subject: Bug 41278

Author: jvdelisle
Date: Tue Dec  1 04:40:14 2009
New Revision: 154864

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=154864
Log:
2009-11-30  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        PR fortran/41278
        * gfortran.dg/array_function_5.f90: New test.

Added:
    branches/gcc-4_4-branch/gcc/testsuite/gfortran.dg/array_function_5.f90
Modified:
    branches/gcc-4_4-branch/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug fortran/41278] internal compiler error related to matmul and transpose
  2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
                   ` (13 preceding siblings ...)
  2009-12-01  4:40 ` jvdelisle at gcc dot gnu dot org
@ 2009-12-01  4:41 ` jvdelisle at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2009-12-01  4:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from jvdelisle at gcc dot gnu dot org  2009-12-01 04:41 -------
Fixed on Trunk and 4.4


-- 

jvdelisle at gcc dot gnu dot org changed:

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


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


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

end of thread, other threads:[~2009-12-01  4:41 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-05 14:38 [Bug fortran/41278] New: internal compiler error related to matmul and transpose cmklaij at hetnet dot nl
2009-09-05 14:54 ` [Bug fortran/41278] " jvdelisle at gcc dot gnu dot org
2009-09-05 15:19 ` rguenth at gcc dot gnu dot org
2009-09-05 15:34 ` jv244 at cam dot ac dot uk
2009-09-08 16:22 ` tkoenig at gcc dot gnu dot org
2009-11-26 13:02 ` jvdelisle at gcc dot gnu dot org
2009-11-26 14:35 ` jvdelisle at gcc dot gnu dot org
2009-11-26 17:50 ` jvdelisle at gcc dot gnu dot org
2009-11-26 19:06 ` jvdelisle at gcc dot gnu dot org
2009-11-26 19:11 ` jvdelisle at gcc dot gnu dot org
2009-11-26 21:46 ` burnus at gcc dot gnu dot org
2009-11-26 22:11 ` jvdelisle at gcc dot gnu dot org
2009-11-27  8:34 ` burnus at gcc dot gnu dot org
2009-12-01  4:36 ` jvdelisle at gcc dot gnu dot org
2009-12-01  4:40 ` jvdelisle at gcc dot gnu dot org
2009-12-01  4:41 ` jvdelisle 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).